Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: most: Remove unnecessary externs

Using 'extern' is not necessary for function prototypes.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Joe Perches and committed by
Greg Kroah-Hartman
ddb98ce1 910bf1ef

+4 -4
+4 -4
drivers/staging/most/hdm-dim2/dim2_hal.h
··· 108 108 u32 DIM_ReadRegister(u8 register_index); 109 109 110 110 111 - extern u32 DIMCB_IoRead(u32 *ptr32); 111 + u32 DIMCB_IoRead(u32 *ptr32); 112 112 113 - extern void DIMCB_IoWrite(u32 *ptr32, u32 value); 113 + void DIMCB_IoWrite(u32 *ptr32, u32 value); 114 114 115 - extern void DIMCB_OnError(u8 error_id, const char *error_message); 115 + void DIMCB_OnError(u8 error_id, const char *error_message); 116 116 117 - extern void DIMCB_OnFail(const char *filename, int linenum); 117 + void DIMCB_OnFail(const char *filename, int linenum); 118 118 119 119 120 120 #ifdef __cplusplus