diff options
author | Joe Perches <joe@perches.com> | 2013-09-26 14:48:15 -0700 |
---|---|---|
committer | Joe Perches <joe@perches.com> | 2013-09-26 15:06:58 -0700 |
commit | f629d208d27a22f495b7734eede585b5d207e912 (patch) | |
tree | 1fd20f80eb03de507641f4069b39a07df3d57000 /include/linux/fddidevice.h | |
parent | 7965bd4d71ef7cf1db00afb9e406ddfc13443c13 (diff) | |
download | blackbird-op-linux-f629d208d27a22f495b7734eede585b5d207e912.tar.gz blackbird-op-linux-f629d208d27a22f495b7734eede585b5d207e912.zip |
[networking]device.h: 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 'include/linux/fddidevice.h')
-rw-r--r-- | include/linux/fddidevice.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/fddidevice.h b/include/linux/fddidevice.h index 155bafd9e886..9a79f0106da1 100644 --- a/include/linux/fddidevice.h +++ b/include/linux/fddidevice.h @@ -25,10 +25,9 @@ #include <linux/if_fddi.h> #ifdef __KERNEL__ -extern __be16 fddi_type_trans(struct sk_buff *skb, - struct net_device *dev); -extern int fddi_change_mtu(struct net_device *dev, int new_mtu); -extern struct net_device *alloc_fddidev(int sizeof_priv); +__be16 fddi_type_trans(struct sk_buff *skb, struct net_device *dev); +int fddi_change_mtu(struct net_device *dev, int new_mtu); +struct net_device *alloc_fddidev(int sizeof_priv); #endif #endif /* _LINUX_FDDIDEVICE_H */ |