1
0
Fork 0

broadcom: 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>
hifive-unleashed-5.1
Joe Perches 2013-09-23 15:11:33 -07:00 committed by David S. Miller
parent 6ae97e834a
commit 1ee1725bb0
1 changed files with 2 additions and 2 deletions

View File

@ -353,8 +353,8 @@ struct cnic_ulp_ops {
atomic_t ref_count;
};
extern int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops);
int cnic_register_driver(int ulp_type, struct cnic_ulp_ops *ulp_ops);
extern int cnic_unregister_driver(int ulp_type);
int cnic_unregister_driver(int ulp_type);
#endif