net: ethernet: cisco: enic: enic_dev: Remove some unused functions
Removes some functions that are not used anywhere: enic_dev_enable2_done() enic_dev_enable2() enic_dev_deinit_done() enic_dev_init_prov2() enic_vnic_dev_deinit() This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
50ab97d71b
commit
3adc0becfe
|
@ -177,40 +177,6 @@ int enic_dev_intr_coal_timer_info(struct enic *enic)
|
|||
return err;
|
||||
}
|
||||
|
||||
int enic_vnic_dev_deinit(struct enic *enic)
|
||||
{
|
||||
int err;
|
||||
|
||||
spin_lock_bh(&enic->devcmd_lock);
|
||||
err = vnic_dev_deinit(enic->vdev);
|
||||
spin_unlock_bh(&enic->devcmd_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int enic_dev_init_prov2(struct enic *enic, struct vic_provinfo *vp)
|
||||
{
|
||||
int err;
|
||||
|
||||
spin_lock_bh(&enic->devcmd_lock);
|
||||
err = vnic_dev_init_prov2(enic->vdev,
|
||||
(u8 *)vp, vic_provinfo_size(vp));
|
||||
spin_unlock_bh(&enic->devcmd_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int enic_dev_deinit_done(struct enic *enic, int *status)
|
||||
{
|
||||
int err;
|
||||
|
||||
spin_lock_bh(&enic->devcmd_lock);
|
||||
err = vnic_dev_deinit_done(enic->vdev, status);
|
||||
spin_unlock_bh(&enic->devcmd_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
/* rtnl lock is held */
|
||||
int enic_vlan_rx_add_vid(struct net_device *netdev, __be16 proto, u16 vid)
|
||||
{
|
||||
|
@ -237,28 +203,6 @@ int enic_vlan_rx_kill_vid(struct net_device *netdev, __be16 proto, u16 vid)
|
|||
return err;
|
||||
}
|
||||
|
||||
int enic_dev_enable2(struct enic *enic, int active)
|
||||
{
|
||||
int err;
|
||||
|
||||
spin_lock_bh(&enic->devcmd_lock);
|
||||
err = vnic_dev_enable2(enic->vdev, active);
|
||||
spin_unlock_bh(&enic->devcmd_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int enic_dev_enable2_done(struct enic *enic, int *status)
|
||||
{
|
||||
int err;
|
||||
|
||||
spin_lock_bh(&enic->devcmd_lock);
|
||||
err = vnic_dev_enable2_done(enic->vdev, status);
|
||||
spin_unlock_bh(&enic->devcmd_lock);
|
||||
|
||||
return err;
|
||||
}
|
||||
|
||||
int enic_dev_status_to_errno(int devcmd_status)
|
||||
{
|
||||
switch (devcmd_status) {
|
||||
|
|
|
@ -55,11 +55,6 @@ int enic_dev_set_ig_vlan_rewrite_mode(struct enic *enic);
|
|||
int enic_dev_enable(struct enic *enic);
|
||||
int enic_dev_disable(struct enic *enic);
|
||||
int enic_dev_intr_coal_timer_info(struct enic *enic);
|
||||
int enic_vnic_dev_deinit(struct enic *enic);
|
||||
int enic_dev_init_prov2(struct enic *enic, struct vic_provinfo *vp);
|
||||
int enic_dev_deinit_done(struct enic *enic, int *status);
|
||||
int enic_dev_enable2(struct enic *enic, int arg);
|
||||
int enic_dev_enable2_done(struct enic *enic, int *status);
|
||||
int enic_dev_status_to_errno(int devcmd_status);
|
||||
|
||||
#endif /* _ENIC_DEV_H_ */
|
||||
|
|
Loading…
Reference in New Issue