Commit 2751bc91 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by Greg Kroah-Hartman
Browse files

Staging: ks7010: Remove extern keyword from function declaration



Remove extern specifier from function declaration as they have
it by default. Also move extern declaration from .c files to
their respective header file 'ks_hostif.h'. Coccinelle was used
to remove extern and other changes were done by hand.
Script:
@@
identifier func;
type T;
@@
- extern
T func(...);

Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2296f521
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -21,15 +21,6 @@
/* Include Wireless Extension definition and check version */
#include <net/iw_handler.h>	/* New driver API */

extern int ks_wlan_hw_tx(struct ks_wlan_private *priv, void *p,
			 unsigned long size,
			 void (*complete_handler) (void *arg1, void *arg2),
			 void *arg1, void *arg2);
extern void send_packet_complete(void *, void *);

extern void ks_wlan_hw_wakeup_request(struct ks_wlan_private *priv);
extern int ks_wlan_hw_power_save(struct ks_wlan_private *priv);

/* macro */
#define inc_smeqhead(priv) \
        ( priv->sme_i.qhead = (priv->sme_i.qhead + 1) % SME_EVENT_BUFF_SIZE )
+15 −7
Original line number Diff line number Diff line
@@ -616,13 +616,21 @@ enum {
#include "ks_wlan.h"

/* function prototype */
extern int hostif_data_request(struct ks_wlan_private *priv,
int hostif_data_request(struct ks_wlan_private *priv,
			 struct sk_buff *packet);
extern void hostif_receive(struct ks_wlan_private *priv, unsigned char *p,
void hostif_receive(struct ks_wlan_private *priv, unsigned char *p,
	             unsigned int size);
extern void hostif_sme_enqueue(struct ks_wlan_private *priv, uint16_t event);
extern int hostif_init(struct ks_wlan_private *priv);
extern void hostif_exit(struct ks_wlan_private *priv);
void hostif_sme_enqueue(struct ks_wlan_private *priv, uint16_t event);
int hostif_init(struct ks_wlan_private *priv);
void hostif_exit(struct ks_wlan_private *priv);
int ks_wlan_hw_tx(struct ks_wlan_private *priv, void *p,
		   unsigned long size,
		   void (*complete_handler) (void *arg1, void *arg2),
		   void *arg1, void *arg2);
void send_packet_complete(void *, void *);

void ks_wlan_hw_wakeup_request(struct ks_wlan_private *priv);
int ks_wlan_hw_power_save(struct ks_wlan_private *priv);

static
inline int hif_align_size(int size)
+2 −2
Original line number Diff line number Diff line
@@ -499,7 +499,7 @@ struct ks_wlan_private {
	uint wakeup_count;	/* for detect wakeup loop */
};

extern int ks_wlan_net_start(struct net_device *dev);
extern int ks_wlan_net_stop(struct net_device *dev);
int ks_wlan_net_start(struct net_device *dev);
int ks_wlan_net_stop(struct net_device *dev);

#endif /* _KS_WLAN_H */
+3 −3
Original line number Diff line number Diff line
@@ -58,8 +58,8 @@
#include "ks_wlan.h"
#include <linux/netdevice.h>

extern int ks_wlan_read_config_file(struct ks_wlan_private *priv);
extern int ks_wlan_setup_parameter(struct ks_wlan_private *priv,
int ks_wlan_read_config_file(struct ks_wlan_private *priv);
int ks_wlan_setup_parameter(struct ks_wlan_private *priv,
		             unsigned int commit_flag);

#endif /* __KERNEL__ */
+0 −4
Original line number Diff line number Diff line
@@ -69,10 +69,6 @@ static const struct iw_handler_def ks_wlan_handler_def;
/*
 *	function prototypes
 */
extern int ks_wlan_hw_tx(struct ks_wlan_private *priv, void *p,
			 unsigned long size,
			 void (*complete_handler) (void *arg1, void *arg2),
			 void *arg1, void *arg2);
static int ks_wlan_open(struct net_device *dev);
static void ks_wlan_tx_timeout(struct net_device *dev);
static int ks_wlan_start_xmit(struct sk_buff *skb, struct net_device *dev);
Loading