Skip to content

Commit

Permalink
drivers/net/smc911x.c: smc911x_drv_probe() cleanup
Browse files Browse the repository at this point in the history
Save an ugly ifdef.

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Andrew Morton authored and David S. Miller committed Dec 4, 2008
1 parent fd568fc commit a316084
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/net/smc911x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2048,9 +2048,6 @@ static int __devinit smc911x_probe(struct net_device *dev)
*/
static int __devinit smc911x_drv_probe(struct platform_device *pdev)
{
#ifdef SMC_DYNAMIC_BUS_CONFIG
struct smc911x_platdata *pd = pdev->dev.platform_data;
#endif
struct net_device *ndev;
struct resource *res;
struct smc911x_local *lp;
Expand Down Expand Up @@ -2085,11 +2082,14 @@ static int __devinit smc911x_drv_probe(struct platform_device *pdev)
lp = netdev_priv(ndev);
lp->netdev = ndev;
#ifdef SMC_DYNAMIC_BUS_CONFIG
if (!pd) {
ret = -EINVAL;
goto release_both;
{
struct smc911x_platdata *pd = pdev->dev.platform_data;
if (!pd) {
ret = -EINVAL;
goto release_both;
}
memcpy(&lp->cfg, pd, sizeof(lp->cfg));
}
memcpy(&lp->cfg, pd, sizeof(lp->cfg));
#endif

addr = ioremap(res->start, SMC911X_IO_EXTENT);
Expand Down

0 comments on commit a316084

Please sign in to comment.