mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
atl1c: make functions static
The up/down are only used in this file. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
49b052215b
commit
0fb1e54ed1
@ -631,8 +631,6 @@ struct atl1c_adapter {
|
||||
extern char atl1c_driver_name[];
|
||||
extern char atl1c_driver_version[];
|
||||
|
||||
extern int atl1c_up(struct atl1c_adapter *adapter);
|
||||
extern void atl1c_down(struct atl1c_adapter *adapter);
|
||||
extern void atl1c_reinit_locked(struct atl1c_adapter *adapter);
|
||||
extern s32 atl1c_reset_hw(struct atl1c_hw *hw);
|
||||
extern void atl1c_set_ethtool_ops(struct net_device *netdev);
|
||||
|
@ -66,6 +66,8 @@ static void atl1c_set_aspm(struct atl1c_hw *hw, bool linkup);
|
||||
static void atl1c_setup_mac_ctrl(struct atl1c_adapter *adapter);
|
||||
static void atl1c_clean_rx_irq(struct atl1c_adapter *adapter, u8 que,
|
||||
int *work_done, int work_to_do);
|
||||
static int atl1c_up(struct atl1c_adapter *adapter);
|
||||
static void atl1c_down(struct atl1c_adapter *adapter);
|
||||
|
||||
static const u16 atl1c_pay_load_size[] = {
|
||||
128, 256, 512, 1024, 2048, 4096,
|
||||
@ -2309,7 +2311,7 @@ static int atl1c_request_irq(struct atl1c_adapter *adapter)
|
||||
return err;
|
||||
}
|
||||
|
||||
int atl1c_up(struct atl1c_adapter *adapter)
|
||||
static int atl1c_up(struct atl1c_adapter *adapter)
|
||||
{
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
int num;
|
||||
@ -2351,7 +2353,7 @@ err_alloc_rx:
|
||||
return err;
|
||||
}
|
||||
|
||||
void atl1c_down(struct atl1c_adapter *adapter)
|
||||
static void atl1c_down(struct atl1c_adapter *adapter)
|
||||
{
|
||||
struct net_device *netdev = adapter->netdev;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user