summaryrefslogtreecommitdiffstats
path: root/include/drm/drm_sysfs.h
diff options
context:
space:
mode:
authorDaniel Vetter <daniel.vetter@ffwll.ch>2017-03-22 09:36:02 +0100
committerDaniel Vetter <daniel.vetter@ffwll.ch>2017-03-24 09:36:06 +0100
commit91faa0478b5921c638853db54c89a3859c742556 (patch)
treee1369d964d8a780d3f67e39cfd874083ba6943fc /include/drm/drm_sysfs.h
parente448054b5c63b834bba874453d1f2da4e7d39461 (diff)
downloadlinux-0-day-91faa0478b5921c638853db54c89a3859c742556.tar.gz
linux-0-day-91faa0478b5921c638853db54c89a3859c742556.tar.xz
drm: drop extern from function decls
It's the default storage class for functions, entirely redundant. And a lot of these headers are a bit inconsistent due to organically grown. Reviewed-by: Gabriel Krisman Bertazi <krisman@collabora.co.uk> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/20170322083617.13361-2-daniel.vetter@ffwll.ch
Diffstat (limited to 'include/drm/drm_sysfs.h')
-rw-r--r--include/drm/drm_sysfs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/drm/drm_sysfs.h b/include/drm/drm_sysfs.h
index 1d8e033fde673..23418c1f10d1d 100644
--- a/include/drm/drm_sysfs.h
+++ b/include/drm/drm_sysfs.h
@@ -6,7 +6,7 @@
* don't want to include the full drmP.h file.
*/
-extern int drm_class_device_register(struct device *dev);
-extern void drm_class_device_unregister(struct device *dev);
+int drm_class_device_register(struct device *dev);
+void drm_class_device_unregister(struct device *dev);
#endif