mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-18 12:45:08 +00:00
net: bcmgenet: Drop useless OF code
There is nothing which needs a set of OF headers, followed by redundant OF node ID check. Drop them for good. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d4d9b47e4b
commit
9a965942a9
1 changed files with 0 additions and 13 deletions
|
@ -23,11 +23,6 @@
|
||||||
#include <linux/dma-mapping.h>
|
#include <linux/dma-mapping.h>
|
||||||
#include <linux/pm.h>
|
#include <linux/pm.h>
|
||||||
#include <linux/clk.h>
|
#include <linux/clk.h>
|
||||||
#include <linux/of.h>
|
|
||||||
#include <linux/of_address.h>
|
|
||||||
#include <linux/of_irq.h>
|
|
||||||
#include <linux/of_net.h>
|
|
||||||
#include <linux/of_platform.h>
|
|
||||||
#include <net/arp.h>
|
#include <net/arp.h>
|
||||||
|
|
||||||
#include <linux/mii.h>
|
#include <linux/mii.h>
|
||||||
|
@ -3417,8 +3412,6 @@ MODULE_DEVICE_TABLE(of, bcmgenet_match);
|
||||||
static int bcmgenet_probe(struct platform_device *pdev)
|
static int bcmgenet_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct bcmgenet_platform_data *pd = pdev->dev.platform_data;
|
struct bcmgenet_platform_data *pd = pdev->dev.platform_data;
|
||||||
struct device_node *dn = pdev->dev.of_node;
|
|
||||||
const struct of_device_id *of_id = NULL;
|
|
||||||
const struct bcmgenet_plat_data *pdata;
|
const struct bcmgenet_plat_data *pdata;
|
||||||
struct bcmgenet_priv *priv;
|
struct bcmgenet_priv *priv;
|
||||||
struct net_device *dev;
|
struct net_device *dev;
|
||||||
|
@ -3433,12 +3426,6 @@ static int bcmgenet_probe(struct platform_device *pdev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (dn) {
|
|
||||||
of_id = of_match_node(bcmgenet_match, dn);
|
|
||||||
if (!of_id)
|
|
||||||
return -EINVAL;
|
|
||||||
}
|
|
||||||
|
|
||||||
priv = netdev_priv(dev);
|
priv = netdev_priv(dev);
|
||||||
priv->irq0 = platform_get_irq(pdev, 0);
|
priv->irq0 = platform_get_irq(pdev, 0);
|
||||||
if (priv->irq0 < 0) {
|
if (priv->irq0 < 0) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue