mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
irda: 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> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a22b8f4b57
commit
0e418f94d3
4 changed files with 20 additions and 21 deletions
|
@ -126,6 +126,6 @@ void irlap_do_event(struct irlap_cb *self, IRLAP_EVENT event,
|
|||
struct sk_buff *skb, struct irlap_info *info);
|
||||
void irlap_print_event(IRLAP_EVENT event);
|
||||
|
||||
extern int irlap_qos_negotiate(struct irlap_cb *self, struct sk_buff *skb);
|
||||
int irlap_qos_negotiate(struct irlap_cb *self, struct sk_buff *skb);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue