|
@@ -29,7 +29,6 @@
|
|
|
#include <linux/of.h>
|
|
|
#include <linux/of_device.h>
|
|
|
#include <linux/of_net.h>
|
|
|
-#include <linux/pinctrl/consumer.h>
|
|
|
|
|
|
#include "macb.h"
|
|
|
|
|
@@ -309,7 +308,6 @@ static int __init at91ether_probe(struct platform_device *pdev)
|
|
|
struct resource *regs;
|
|
|
struct net_device *dev;
|
|
|
struct phy_device *phydev;
|
|
|
- struct pinctrl *pinctrl;
|
|
|
struct macb *lp;
|
|
|
int res;
|
|
|
u32 reg;
|
|
@@ -319,15 +317,6 @@ static int __init at91ether_probe(struct platform_device *pdev)
|
|
|
if (!regs)
|
|
|
return -ENOENT;
|
|
|
|
|
|
- pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
|
|
|
- if (IS_ERR(pinctrl)) {
|
|
|
- res = PTR_ERR(pinctrl);
|
|
|
- if (res == -EPROBE_DEFER)
|
|
|
- return res;
|
|
|
-
|
|
|
- dev_warn(&pdev->dev, "No pinctrl provided\n");
|
|
|
- }
|
|
|
-
|
|
|
dev = alloc_etherdev(sizeof(struct macb));
|
|
|
if (!dev)
|
|
|
return -ENOMEM;
|