mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-07 22:34:18 +08:00
natsemi: sonic: stop calling netdev_boot_setup_check
The data from the kernel command line is no longer used since the
probe function gets it from the platform device resources instead.
The jazz version was changed to be like this in 2007, the xtensa
version apparently copied the code from there.
Fixes: ed9f0e0bf3
("remove setup of platform device from jazzsonic.c")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0852aeb9c3
commit
19a11bf06c
@ -193,8 +193,6 @@ static int jazz_sonic_probe(struct platform_device *pdev)
|
||||
SET_NETDEV_DEV(dev, &pdev->dev);
|
||||
platform_set_drvdata(pdev, dev);
|
||||
|
||||
netdev_boot_setup_check(dev);
|
||||
|
||||
dev->base_addr = res->start;
|
||||
dev->irq = platform_get_irq(pdev, 0);
|
||||
err = sonic_probe1(dev);
|
||||
|
@ -215,7 +215,6 @@ int xtsonic_probe(struct platform_device *pdev)
|
||||
lp->device = &pdev->dev;
|
||||
platform_set_drvdata(pdev, dev);
|
||||
SET_NETDEV_DEV(dev, &pdev->dev);
|
||||
netdev_boot_setup_check(dev);
|
||||
|
||||
dev->base_addr = resmem->start;
|
||||
dev->irq = resirq->start;
|
||||
|
Loading…
Reference in New Issue
Block a user