Commit a5ee4695 authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: rtl8712: Remove unnecessary externs

Using 'extern' is not necessary for function prototypes.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e075de61
......@@ -76,22 +76,18 @@ uint oid_null_function(struct oid_par_priv *poid_par_priv);
extern struct iw_handler_def r871x_handlers_def;
extern uint drv_query_info(
struct net_device *MiniportAdapterContext,
uint Oid,
void *InformationBuffer,
u32 InformationBufferLength,
u32 *BytesWritten,
u32 *BytesNeeded
);
uint drv_query_info(struct net_device *MiniportAdapterContext,
uint Oid,
void *InformationBuffer,
u32 InformationBufferLength,
u32 *BytesWritten,
u32 *BytesNeeded);
extern uint drv_set_info(
struct net_device *MiniportAdapterContext,
uint Oid,
void *InformationBuffer,
u32 InformationBufferLength,
u32 *BytesRead,
u32 *BytesNeeded
);
uint drv_set_info(struct net_device *MiniportAdapterContext,
uint Oid,
void *InformationBuffer,
u32 InformationBufferLength,
u32 *BytesRead,
u32 *BytesNeeded);
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment