]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
ethoc: remove unused spinlock
authorJonas Bonn <jonas@southpole.se>
Thu, 25 Nov 2010 02:30:26 +0000 (02:30 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 28 Nov 2010 19:16:35 +0000 (11:16 -0800)
Signed-off-by: Jonas Bonn <jonas@southpole.se>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethoc.c

index 9ea3c54e1a38772d343dc5e4e292d17af9efd825..e9e712e0f92c9f2045a2d19e46867ac6ad141392 100644 (file)
@@ -185,7 +185,6 @@ MODULE_PARM_DESC(buffer_size, "DMA buffer allocation size");
  * @netdev:    pointer to network device structure
  * @napi:      NAPI structure
  * @msg_enable:        device state flags
- * @rx_lock:   receive lock
  * @lock:      device lock
  * @phy:       attached PHY
  * @mdio:      MDIO bus for PHY access
@@ -210,7 +209,6 @@ struct ethoc {
        struct napi_struct napi;
        u32 msg_enable;
 
-       spinlock_t rx_lock;
        spinlock_t lock;
 
        struct phy_device *phy;
@@ -1060,7 +1058,6 @@ static int __devinit ethoc_probe(struct platform_device *pdev)
        /* setup NAPI */
        netif_napi_add(netdev, &priv->napi, ethoc_poll, 64);
 
-       spin_lock_init(&priv->rx_lock);
        spin_lock_init(&priv->lock);
 
        ret = register_netdev(netdev);