diff options
author | Vladimir Oltean <vladimir.oltean@nxp.com> | 2020-06-24 15:45:17 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-07-31 18:39:32 +0200 |
commit | 909dbf09cd018ab6ddd853f23061394d437777a6 (patch) | |
tree | 39e08f21f367246e0bc400e5a6a4275dbd212020 | |
parent | 4918285a6c7ddf0e3bbda163314030c3642dd08f (diff) | |
download | linux-stable-909dbf09cd018ab6ddd853f23061394d437777a6.tar.gz linux-stable-909dbf09cd018ab6ddd853f23061394d437777a6.tar.bz2 linux-stable-909dbf09cd018ab6ddd853f23061394d437777a6.zip |
Revert "dpaa_eth: fix usage as DSA master, try 3"
This reverts commit 40a904b1c2e57b22dd002dfce73688871cb0bac8.
The patch is not wrong, but the Fixes: tag is. It should have been:
Fixes: 060ad66f9795 ("dpaa_eth: change DMA device")
which means that it's fixing a commit which was introduced in:
git tag --contains 060ad66f97954
v5.5
which then means it should have not been backported to linux-5.4.y,
where things _were_ working and now they're not.
Reported-by: Joakim Tjernlund <joakim.tjernlund@infinera.com>
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/net/ethernet/freescale/dpaa/dpaa_eth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c index cd9d08695cc1..00c4beb760c3 100644 --- a/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c +++ b/drivers/net/ethernet/freescale/dpaa/dpaa_eth.c @@ -2802,7 +2802,7 @@ static int dpaa_eth_probe(struct platform_device *pdev) } /* Do this here, so we can be verbose early */ - SET_NETDEV_DEV(net_dev, dev->parent); + SET_NETDEV_DEV(net_dev, dev); dev_set_drvdata(dev, net_dev); priv = netdev_priv(net_dev); |