aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/fddi/skfp/h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-09-23 14:37:59 -0400
committerJoe Perches <joe@perches.com>2013-09-24 15:54:15 -0400
commitd140ad96146b6e7b196c31cbbb0f971845bfd053 (patch)
tree6925e0f6b5eaae240b9e9f09d1cd7a8eefcffb59 /drivers/net/fddi/skfp/h
parent3e0dd1f4722f8e0c10a47b9bbb26e891e79fef60 (diff)
fddi/skfp: 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/fddi/skfp/h')
-rw-r--r--drivers/net/fddi/skfp/h/smc.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/drivers/net/fddi/skfp/h/smc.h b/drivers/net/fddi/skfp/h/smc.h
index 3ca308b28214..bd1166bf8f61 100644
--- a/drivers/net/fddi/skfp/h/smc.h
+++ b/drivers/net/fddi/skfp/h/smc.h
@@ -469,20 +469,20 @@ struct s_smc {
469 469
470extern const struct fddi_addr fddi_broadcast; 470extern const struct fddi_addr fddi_broadcast;
471 471
472extern void all_selection_criteria(struct s_smc *smc); 472void all_selection_criteria(struct s_smc *smc);
473extern void card_stop(struct s_smc *smc); 473void card_stop(struct s_smc *smc);
474extern void init_board(struct s_smc *smc, u_char *mac_addr); 474void init_board(struct s_smc *smc, u_char *mac_addr);
475extern int init_fplus(struct s_smc *smc); 475int init_fplus(struct s_smc *smc);
476extern void init_plc(struct s_smc *smc); 476void init_plc(struct s_smc *smc);
477extern int init_smt(struct s_smc *smc, u_char * mac_addr); 477int init_smt(struct s_smc *smc, u_char *mac_addr);
478extern void mac1_irq(struct s_smc *smc, u_short stu, u_short stl); 478void mac1_irq(struct s_smc *smc, u_short stu, u_short stl);
479extern void mac2_irq(struct s_smc *smc, u_short code_s2u, u_short code_s2l); 479void mac2_irq(struct s_smc *smc, u_short code_s2u, u_short code_s2l);
480extern void mac3_irq(struct s_smc *smc, u_short code_s3u, u_short code_s3l); 480void mac3_irq(struct s_smc *smc, u_short code_s3u, u_short code_s3l);
481extern int pcm_status_twisted(struct s_smc *smc); 481int pcm_status_twisted(struct s_smc *smc);
482extern void plc1_irq(struct s_smc *smc); 482void plc1_irq(struct s_smc *smc);
483extern void plc2_irq(struct s_smc *smc); 483void plc2_irq(struct s_smc *smc);
484extern void read_address(struct s_smc *smc, u_char * mac_addr); 484void read_address(struct s_smc *smc, u_char *mac_addr);
485extern void timer_irq(struct s_smc *smc); 485void timer_irq(struct s_smc *smc);
486 486
487#endif /* _SCMECM_ */ 487#endif /* _SCMECM_ */
488 488