mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
net: ethernet: ti: cpsw: remove unused priv lock
There is no reason in this lock. At least for now. Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9b6d53985f
commit
330348d942
@ -364,7 +364,6 @@ static inline void slave_write(struct cpsw_slave *slave, u32 val, u32 offset)
|
||||
}
|
||||
|
||||
struct cpsw_priv {
|
||||
spinlock_t lock;
|
||||
struct platform_device *pdev;
|
||||
struct net_device *ndev;
|
||||
struct napi_struct napi_rx;
|
||||
@ -2124,7 +2123,6 @@ static int cpsw_probe_dual_emac(struct platform_device *pdev,
|
||||
}
|
||||
|
||||
priv_sl2 = netdev_priv(ndev);
|
||||
spin_lock_init(&priv_sl2->lock);
|
||||
priv_sl2->data = *data;
|
||||
priv_sl2->pdev = pdev;
|
||||
priv_sl2->ndev = ndev;
|
||||
@ -2243,7 +2241,6 @@ static int cpsw_probe(struct platform_device *pdev)
|
||||
|
||||
platform_set_drvdata(pdev, ndev);
|
||||
priv = netdev_priv(ndev);
|
||||
spin_lock_init(&priv->lock);
|
||||
priv->pdev = pdev;
|
||||
priv->ndev = ndev;
|
||||
priv->dev = &ndev->dev;
|
||||
|
Loading…
Reference in New Issue
Block a user