@@ -36,6 +36,7 @@
#include <linux/efi.h>
#include "radeon_reg.h"
#include "radeon.h"
+#include "radeon_drv.h"
#include "atom.h"
static const char radeon_family_name[][16] = {
@@ -156,11 +156,6 @@ void radeon_gem_prime_vunmap(struct drm_gem_object *obj, void *vaddr);
extern long radeon_kms_compat_ioctl(struct file *filp, unsigned int cmd,
unsigned long arg);
-#if defined(CONFIG_DEBUG_FS)
-int radeon_debugfs_init(struct drm_minor *minor);
-void radeon_debugfs_cleanup(struct drm_minor *minor);
-#endif
-
/* atpx handler */
#if defined(CONFIG_VGA_SWITCHEROO)
void radeon_register_atpx_handler(void);
@@ -119,4 +119,9 @@
long radeon_drm_ioctl(struct file *filp,
unsigned int cmd, unsigned long arg);
+#if defined(CONFIG_DEBUG_FS)
+int radeon_debugfs_init(struct drm_minor *minor);
+void radeon_debugfs_cleanup(struct drm_minor *minor);
+#endif
+
#endif /* __RADEON_DRV_H__ */
We get 2 warnings when building kernel with W=1: drivers/gpu/drm/radeon/radeon_device.c:1961:5: warning: no previous prototype for 'radeon_debugfs_init' [-Wmissing-prototypes] drivers/gpu/drm/radeon/radeon_device.c:1966:6: warning: no previous prototype for 'radeon_debugfs_cleanup' [-Wmissing-prototypes] In fact, both functions are declared in drivers/gpu/drm/radeon/radeon_drv.c, but should be declared in a header file, thus can be recognized in other file. So this patch moves the declarations into drivers/gpu/drm/radeon/radeon.h. Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org> --- drivers/gpu/drm/radeon/radeon_device.c | 1 + drivers/gpu/drm/radeon/radeon_drv.c | 5 ----- drivers/gpu/drm/radeon/radeon_drv.h | 5 +++++ 3 files changed, 6 insertions(+), 5 deletions(-) -- 2.7.4