diff options
Diffstat (limited to 'drivers/net/ethernet/toshiba/ps3_gelic_net.h')
-rw-r--r-- | drivers/net/ethernet/toshiba/ps3_gelic_net.h | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/drivers/net/ethernet/toshiba/ps3_gelic_net.h b/drivers/net/ethernet/toshiba/ps3_gelic_net.h index 309abb472aa2..8505196be9f5 100644 --- a/drivers/net/ethernet/toshiba/ps3_gelic_net.h +++ b/drivers/net/ethernet/toshiba/ps3_gelic_net.h | |||
@@ -359,27 +359,26 @@ static inline void *port_priv(struct gelic_port *port) | |||
359 | } | 359 | } |
360 | 360 | ||
361 | #ifdef CONFIG_PPC_EARLY_DEBUG_PS3GELIC | 361 | #ifdef CONFIG_PPC_EARLY_DEBUG_PS3GELIC |
362 | extern void udbg_shutdown_ps3gelic(void); | 362 | void udbg_shutdown_ps3gelic(void); |
363 | #else | 363 | #else |
364 | static inline void udbg_shutdown_ps3gelic(void) {} | 364 | static inline void udbg_shutdown_ps3gelic(void) {} |
365 | #endif | 365 | #endif |
366 | 366 | ||
367 | extern int gelic_card_set_irq_mask(struct gelic_card *card, u64 mask); | 367 | int gelic_card_set_irq_mask(struct gelic_card *card, u64 mask); |
368 | /* shared netdev ops */ | 368 | /* shared netdev ops */ |
369 | extern void gelic_card_up(struct gelic_card *card); | 369 | void gelic_card_up(struct gelic_card *card); |
370 | extern void gelic_card_down(struct gelic_card *card); | 370 | void gelic_card_down(struct gelic_card *card); |
371 | extern int gelic_net_open(struct net_device *netdev); | 371 | int gelic_net_open(struct net_device *netdev); |
372 | extern int gelic_net_stop(struct net_device *netdev); | 372 | int gelic_net_stop(struct net_device *netdev); |
373 | extern int gelic_net_xmit(struct sk_buff *skb, struct net_device *netdev); | 373 | int gelic_net_xmit(struct sk_buff *skb, struct net_device *netdev); |
374 | extern void gelic_net_set_multi(struct net_device *netdev); | 374 | void gelic_net_set_multi(struct net_device *netdev); |
375 | extern void gelic_net_tx_timeout(struct net_device *netdev); | 375 | void gelic_net_tx_timeout(struct net_device *netdev); |
376 | extern int gelic_net_change_mtu(struct net_device *netdev, int new_mtu); | 376 | int gelic_net_change_mtu(struct net_device *netdev, int new_mtu); |
377 | extern int gelic_net_setup_netdev(struct net_device *netdev, | 377 | int gelic_net_setup_netdev(struct net_device *netdev, struct gelic_card *card); |
378 | struct gelic_card *card); | ||
379 | 378 | ||
380 | /* shared ethtool ops */ | 379 | /* shared ethtool ops */ |
381 | extern void gelic_net_get_drvinfo(struct net_device *netdev, | 380 | void gelic_net_get_drvinfo(struct net_device *netdev, |
382 | struct ethtool_drvinfo *info); | 381 | struct ethtool_drvinfo *info); |
383 | extern void gelic_net_poll_controller(struct net_device *netdev); | 382 | void gelic_net_poll_controller(struct net_device *netdev); |
384 | 383 | ||
385 | #endif /* _GELIC_NET_H */ | 384 | #endif /* _GELIC_NET_H */ |