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

staging: rtl8712: 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
a5ee4695 e075de61

+12 -16
+12 -16
drivers/staging/rtl8712/rtl871x_ioctl.h
··· 76 76 77 77 extern struct iw_handler_def r871x_handlers_def; 78 78 79 - extern uint drv_query_info( 80 - struct net_device *MiniportAdapterContext, 81 - uint Oid, 82 - void *InformationBuffer, 83 - u32 InformationBufferLength, 84 - u32 *BytesWritten, 85 - u32 *BytesNeeded 86 - ); 79 + uint drv_query_info(struct net_device *MiniportAdapterContext, 80 + uint Oid, 81 + void *InformationBuffer, 82 + u32 InformationBufferLength, 83 + u32 *BytesWritten, 84 + u32 *BytesNeeded); 87 85 88 - extern uint drv_set_info( 89 - struct net_device *MiniportAdapterContext, 90 - uint Oid, 91 - void *InformationBuffer, 92 - u32 InformationBufferLength, 93 - u32 *BytesRead, 94 - u32 *BytesNeeded 95 - ); 86 + uint drv_set_info(struct net_device *MiniportAdapterContext, 87 + uint Oid, 88 + void *InformationBuffer, 89 + u32 InformationBufferLength, 90 + u32 *BytesRead, 91 + u32 *BytesNeeded); 96 92 97 93 #endif