summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
diff options
context:
space:
mode:
authorJoachim Eastwood2015-07-29 00:08:58 +0200
committerDavid S. Miller2015-07-29 09:13:24 +0200
commit149adedd7696cbcf1d72d143ca181334000d0ee7 (patch)
tree8062f245b8059b204b6c29c52739648cfd3b44d4 /drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
parentstmmac: move stmmac_pltfr_probe into dwmac-generic (diff)
downloadkernel-qcow2-linux-149adedd7696cbcf1d72d143ca181334000d0ee7.tar.gz
kernel-qcow2-linux-149adedd7696cbcf1d72d143ca181334000d0ee7.tar.xz
kernel-qcow2-linux-149adedd7696cbcf1d72d143ca181334000d0ee7.zip
stmmac: let dwmac-* drivers handle their own match data
Since only a few of the dwmac-* drivers actually need to use the OF match move handling into the dwmac-* drivers that need it. This will also allow dwmac-* drivers to use their own custom match data structure. Signed-off-by: Joachim Eastwood <manabian@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c')
-rw-r--r--drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
index b17238aac791..8a977fde1a46 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c
@@ -21,6 +21,7 @@
#include <linux/regmap.h>
#include <linux/clk.h>
#include <linux/of.h>
+#include <linux/of_device.h>
#include <linux/of_net.h>
#include "stmmac_platform.h"
@@ -337,10 +338,17 @@ static int sti_dwmac_parse_data(struct sti_dwmac *dwmac,
static int sti_dwmac_probe(struct platform_device *pdev)
{
struct plat_stmmacenet_data *plat_dat;
+ const struct stmmac_of_data *data;
struct stmmac_resources stmmac_res;
struct sti_dwmac *dwmac;
int ret;
+ data = of_device_get_match_data(&pdev->dev);
+ if (!data) {
+ dev_err(&pdev->dev, "No OF match data provided\n");
+ return -EINVAL;
+ }
+
ret = stmmac_get_platform_resources(pdev, &stmmac_res);
if (ret)
return ret;
@@ -360,7 +368,9 @@ static int sti_dwmac_probe(struct platform_device *pdev)
}
plat_dat->bsp_priv = dwmac;
+ plat_dat->init = data->init;
plat_dat->exit = sti_dwmac_exit;
+ plat_dat->fix_mac_speed = data->fix_mac_speed;
ret = plat_dat->init(pdev, plat_dat->bsp_priv);
if (ret)