diff options
author | Joe Perches <joe@perches.com> | 2013-09-23 22:37:59 +0400 |
---|---|---|
committer | Joe Perches <joe@perches.com> | 2013-09-25 04:32:48 +0400 |
commit | 9bd91f3c00bd8dd54339499a9253b31c6bac7c7b (patch) | |
tree | 9bc91a1442802582f31b23a9e5c17e360b248f2d /drivers/net/wireless/brcm80211/include/brcmu_d11.h | |
parent | a3dabaf02d36dbb4051188b706a3e66e6465c56b (diff) | |
download | linux-9bd91f3c00bd8dd54339499a9253b31c6bac7c7b.tar.xz |
brcm80211: Remove extern from function prototypes
There are a mix of function prototypes with and without extern
in the kernel sources. Standardize on not using extern for
function prototypes.
Function prototypes don't need to be written with extern.
extern is assumed by the compiler. Its use is as unnecessary as
using auto to declare automatic/local variables in a block.
Signed-off-by: Joe Perches <joe@perches.com>
Diffstat (limited to 'drivers/net/wireless/brcm80211/include/brcmu_d11.h')
-rw-r--r-- | drivers/net/wireless/brcm80211/include/brcmu_d11.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/brcm80211/include/brcmu_d11.h b/drivers/net/wireless/brcm80211/include/brcmu_d11.h index 92623f02b1c0..8660a2cba098 100644 --- a/drivers/net/wireless/brcm80211/include/brcmu_d11.h +++ b/drivers/net/wireless/brcm80211/include/brcmu_d11.h @@ -140,6 +140,6 @@ struct brcmu_d11inf { void (*decchspec)(struct brcmu_chan *ch); }; -extern void brcmu_d11_attach(struct brcmu_d11inf *d11inf); +void brcmu_d11_attach(struct brcmu_d11inf *d11inf); #endif /* _BRCMU_CHANNELS_H_ */ |