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>
This commit is contained in:
parent
e075de6109
commit
a5ee4695ec
|
@ -76,22 +76,18 @@ uint oid_null_function(struct oid_par_priv *poid_par_priv);
|
||||||
|
|
||||||
extern struct iw_handler_def r871x_handlers_def;
|
extern struct iw_handler_def r871x_handlers_def;
|
||||||
|
|
||||||
extern uint drv_query_info(
|
uint drv_query_info(struct net_device *MiniportAdapterContext,
|
||||||
struct net_device *MiniportAdapterContext,
|
uint Oid,
|
||||||
uint Oid,
|
void *InformationBuffer,
|
||||||
void *InformationBuffer,
|
u32 InformationBufferLength,
|
||||||
u32 InformationBufferLength,
|
u32 *BytesWritten,
|
||||||
u32 *BytesWritten,
|
u32 *BytesNeeded);
|
||||||
u32 *BytesNeeded
|
|
||||||
);
|
|
||||||
|
|
||||||
extern uint drv_set_info(
|
uint drv_set_info(struct net_device *MiniportAdapterContext,
|
||||||
struct net_device *MiniportAdapterContext,
|
uint Oid,
|
||||||
uint Oid,
|
void *InformationBuffer,
|
||||||
void *InformationBuffer,
|
u32 InformationBufferLength,
|
||||||
u32 InformationBufferLength,
|
u32 *BytesRead,
|
||||||
u32 *BytesRead,
|
u32 *BytesNeeded);
|
||||||
u32 *BytesNeeded
|
|
||||||
);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue