aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorJanusz Krzysztofik <janusz.krzysztofik@linux.intel.com>2019-07-12 13:24:25 +0200
committerChris Wilson <chris@chris-wilson.co.uk>2019-07-12 13:04:54 +0100
commitb5893ffc274be966f95aa35f35916fa8725af154 (patch)
treeb60978172142027346b32826393dd0cbf2b4aac9 /include/drm
parentdrm/i915/gtt: Use NULL to encode scratch shadow entries (diff)
downloadlinux-dev-b5893ffc274be966f95aa35f35916fa8725af154.tar.xz
linux-dev-b5893ffc274be966f95aa35f35916fa8725af154.zip
drm/i915: Drop extern qualifiers from header function prototypes
Follow dim checkpatch recommendation so it doesn't complain on that now and again on header file modifications. v2: drop testing leftover (Chris) Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190712112429.740-2-janusz.krzysztofik@linux.intel.com
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/i915_drm.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h
index eb30062359d1..23274cf92712 100644
--- a/include/drm/i915_drm.h
+++ b/include/drm/i915_drm.h
@@ -30,11 +30,11 @@
#include <uapi/drm/i915_drm.h>
/* For use by IPS driver */
-extern unsigned long i915_read_mch_val(void);
-extern bool i915_gpu_raise(void);
-extern bool i915_gpu_lower(void);
-extern bool i915_gpu_busy(void);
-extern bool i915_gpu_turbo_disable(void);
+unsigned long i915_read_mch_val(void);
+bool i915_gpu_raise(void);
+bool i915_gpu_lower(void);
+bool i915_gpu_busy(void);
+bool i915_gpu_turbo_disable(void);
/* Exported from arch/x86/kernel/early-quirks.c */
extern struct resource intel_graphics_stolen_res;