From c53aec2bcc7487437984e4d13e4fc15c4cc95047 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 17 Jan 2020 10:21:45 +0000 Subject: [PATCH] drm/i915: Include the debugfs params header for its own definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit drivers/gpu/drm/i915/i915_debugfs_params.c:228:15: warning: symbol 'i915_debugfs_params' was not declared. Should it be static? drivers/gpu/drm/i915/i915_debugfs_params.c:228:16: error: no previous prototype for ‘i915_debugfs_params’ [-Werror=missing-prototypes] 228 | struct dentry *i915_debugfs_params(struct drm_i915_private *i915) Signed-off-by: Chris Wilson Cc: Jani Nikula Reviewed-by: Jani Nikula Fixes: c43c5a8818d4 ("drm/i915/params: add i915 parameters to debugfs") Link: https://patchwork.freedesktop.org/patch/msgid/20200117102145.2948244-1-chris@chris-wilson.co.uk --- drivers/gpu/drm/i915/i915_debugfs_params.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i915/i915_debugfs_params.c b/drivers/gpu/drm/i915/i915_debugfs_params.c index 12cbdbdf4d80..62b2c5f0495d 100644 --- a/drivers/gpu/drm/i915/i915_debugfs_params.c +++ b/drivers/gpu/drm/i915/i915_debugfs_params.c @@ -5,6 +5,7 @@ #include +#include "i915_debugfs_params.h" #include "i915_drv.h" #include "i915_params.h"