Commit e3152ab9 authored by Francois Romieu's avatar Francois Romieu Committed by Jeff Garzik

korina: misc cleanup

- useless initialization (korina_ope / korina_restart)
- use a single variable for the status code in korina_probe
  and propagate the error status code from below
- useless checks in korina_remove : the variables are
  necessarily set when korina_probe succeeds
Signed-off-by: default avatarFrancois Romieu <romieu@fr.zoreil.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@redhat.com>
parent 751c2e47
...@@ -883,7 +883,7 @@ static int korina_init(struct net_device *dev) ...@@ -883,7 +883,7 @@ static int korina_init(struct net_device *dev)
static int korina_restart(struct net_device *dev) static int korina_restart(struct net_device *dev)
{ {
struct korina_private *lp = netdev_priv(dev); struct korina_private *lp = netdev_priv(dev);
int ret = 0; int ret;
/* /*
* Disable interrupts * Disable interrupts
...@@ -987,7 +987,7 @@ static void korina_poll_controller(struct net_device *dev) ...@@ -987,7 +987,7 @@ static void korina_poll_controller(struct net_device *dev)
static int korina_open(struct net_device *dev) static int korina_open(struct net_device *dev)
{ {
struct korina_private *lp = netdev_priv(dev); struct korina_private *lp = netdev_priv(dev);
int ret = 0; int ret;
/* Initialize */ /* Initialize */
ret = korina_init(dev); ret = korina_init(dev);
...@@ -1082,7 +1082,7 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1082,7 +1082,7 @@ static int korina_probe(struct platform_device *pdev)
struct korina_private *lp; struct korina_private *lp;
struct net_device *dev; struct net_device *dev;
struct resource *r; struct resource *r;
int retval, err; int rc;
dev = alloc_etherdev(sizeof(struct korina_private)); dev = alloc_etherdev(sizeof(struct korina_private));
if (!dev) { if (!dev) {
...@@ -1106,7 +1106,7 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1106,7 +1106,7 @@ static int korina_probe(struct platform_device *pdev)
lp->eth_regs = ioremap_nocache(r->start, r->end - r->start); lp->eth_regs = ioremap_nocache(r->start, r->end - r->start);
if (!lp->eth_regs) { if (!lp->eth_regs) {
printk(KERN_ERR DRV_NAME "cannot remap registers\n"); printk(KERN_ERR DRV_NAME "cannot remap registers\n");
retval = -ENXIO; rc = -ENXIO;
goto probe_err_out; goto probe_err_out;
} }
...@@ -1114,7 +1114,7 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1114,7 +1114,7 @@ static int korina_probe(struct platform_device *pdev)
lp->rx_dma_regs = ioremap_nocache(r->start, r->end - r->start); lp->rx_dma_regs = ioremap_nocache(r->start, r->end - r->start);
if (!lp->rx_dma_regs) { if (!lp->rx_dma_regs) {
printk(KERN_ERR DRV_NAME "cannot remap Rx DMA registers\n"); printk(KERN_ERR DRV_NAME "cannot remap Rx DMA registers\n");
retval = -ENXIO; rc = -ENXIO;
goto probe_err_dma_rx; goto probe_err_dma_rx;
} }
...@@ -1122,14 +1122,14 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1122,14 +1122,14 @@ static int korina_probe(struct platform_device *pdev)
lp->tx_dma_regs = ioremap_nocache(r->start, r->end - r->start); lp->tx_dma_regs = ioremap_nocache(r->start, r->end - r->start);
if (!lp->tx_dma_regs) { if (!lp->tx_dma_regs) {
printk(KERN_ERR DRV_NAME "cannot remap Tx DMA registers\n"); printk(KERN_ERR DRV_NAME "cannot remap Tx DMA registers\n");
retval = -ENXIO; rc = -ENXIO;
goto probe_err_dma_tx; goto probe_err_dma_tx;
} }
lp->td_ring = kmalloc(TD_RING_SIZE + RD_RING_SIZE, GFP_KERNEL); lp->td_ring = kmalloc(TD_RING_SIZE + RD_RING_SIZE, GFP_KERNEL);
if (!lp->td_ring) { if (!lp->td_ring) {
printk(KERN_ERR DRV_NAME "cannot allocate descriptors\n"); printk(KERN_ERR DRV_NAME "cannot allocate descriptors\n");
retval = -ENOMEM; rc = -ENXIO;
goto probe_err_td_ring; goto probe_err_td_ring;
} }
...@@ -1166,14 +1166,14 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1166,14 +1166,14 @@ static int korina_probe(struct platform_device *pdev)
lp->mii_if.phy_id_mask = 0x1f; lp->mii_if.phy_id_mask = 0x1f;
lp->mii_if.reg_num_mask = 0x1f; lp->mii_if.reg_num_mask = 0x1f;
err = register_netdev(dev); rc = register_netdev(dev);
if (err) { if (rc < 0) {
printk(KERN_ERR DRV_NAME printk(KERN_ERR DRV_NAME
": cannot register net device %d\n", err); ": cannot register net device %d\n", rc);
retval = -EINVAL;
goto probe_err_register; goto probe_err_register;
} }
return 0; out:
return rc;
probe_err_register: probe_err_register:
kfree(lp->td_ring); kfree(lp->td_ring);
...@@ -1185,7 +1185,7 @@ static int korina_probe(struct platform_device *pdev) ...@@ -1185,7 +1185,7 @@ static int korina_probe(struct platform_device *pdev)
iounmap(lp->eth_regs); iounmap(lp->eth_regs);
probe_err_out: probe_err_out:
free_netdev(dev); free_netdev(dev);
return retval; goto out;
} }
static int korina_remove(struct platform_device *pdev) static int korina_remove(struct platform_device *pdev)
...@@ -1193,12 +1193,9 @@ static int korina_remove(struct platform_device *pdev) ...@@ -1193,12 +1193,9 @@ static int korina_remove(struct platform_device *pdev)
struct korina_device *bif = platform_get_drvdata(pdev); struct korina_device *bif = platform_get_drvdata(pdev);
struct korina_private *lp = netdev_priv(bif->dev); struct korina_private *lp = netdev_priv(bif->dev);
if (lp->eth_regs) iounmap(lp->eth_regs);
iounmap(lp->eth_regs); iounmap(lp->rx_dma_regs);
if (lp->rx_dma_regs) iounmap(lp->tx_dma_regs);
iounmap(lp->rx_dma_regs);
if (lp->tx_dma_regs)
iounmap(lp->tx_dma_regs);
platform_set_drvdata(pdev, NULL); platform_set_drvdata(pdev, NULL);
unregister_netdev(bif->dev); unregister_netdev(bif->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment