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
This commit is contained in:
Daniel Vetter
2017-03-22 09:36:02 +01:00
parent e448054b5c
commit 91faa0478b
9 changed files with 85 additions and 85 deletions

View File

@@ -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