]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
at86rf230: remove unnecessary / dead code
authorSascha Herrmann <sascha@ps.nvbi.de>
Thu, 4 Apr 2013 11:02:00 +0000 (11:02 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 8 Apr 2013 16:00:16 +0000 (12:00 -0400)
In at86rf230_probe() lp was first set to dev->priv and a few lines later
dev->priv was set to lp again, without changing lp in between. The call
to ieee802154_unregister_device() before err_irq: was unreachable.

Signed-off-by: Sascha Herrmann <sascha@ps.nvbi.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ieee802154/at86rf230.c

index 6e88eab33f5c69694a30e18591d02bf9f51d7ff8..fc315ddea61c251b0c8154e9c908faddc7fbebe1 100644 (file)
@@ -838,7 +838,6 @@ static int at86rf230_probe(struct spi_device *spi)
 
        lp->spi = spi;
 
-       dev->priv = lp;
        dev->parent = &spi->dev;
        dev->extra_tx_headroom = 0;
        /* We do support only 2.4 Ghz */
@@ -940,7 +939,6 @@ static int at86rf230_probe(struct spi_device *spi)
 
        return rc;
 
-       ieee802154_unregister_device(lp->dev);
 err_irq:
        free_irq(spi->irq, lp);
        flush_work(&lp->irqwork);