diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2020-05-14 14:51:58 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2020-05-14 14:52:54 +0200 |
commit | eea23c200445648caef53cfbbefe84c4481fe600 (patch) | |
tree | 5200e180f4840f7da1efea8a178cff211196d6a5 /target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch | |
parent | eb17ee294ca8e2b59051a4337779af7a3f4812d5 (diff) | |
download | upstream-eea23c200445648caef53cfbbefe84c4481fe600.tar.gz upstream-eea23c200445648caef53cfbbefe84c4481fe600.tar.bz2 upstream-eea23c200445648caef53cfbbefe84c4481fe600.zip |
bcm63xx: remove linux 4.14 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch')
-rw-r--r-- | target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch b/target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch deleted file mode 100644 index c489001332..0000000000 --- a/target/linux/bcm63xx/patches-4.14/001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 943b0832e0cf3afe5bd40ffb1885d06106122c5d Mon Sep 17 00:00:00 2001 -From: Jonas Gorski <jonas.gorski@gmail.com> -Date: Sun, 16 Jul 2017 12:49:49 +0200 -Subject: [PATCH 1/4] bcm63xx_enet: just use "enet" as the clock name - -Now that we have the individual clocks available as "enet" we -don't need to rely on the device id for them anymore. - -Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> ---- - drivers/net/ethernet/broadcom/bcm63xx_enet.c | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - ---- a/drivers/net/ethernet/broadcom/bcm63xx_enet.c -+++ b/drivers/net/ethernet/broadcom/bcm63xx_enet.c -@@ -1720,7 +1720,6 @@ static int bcm_enet_probe(struct platfor - struct bcm63xx_enet_platform_data *pd; - struct resource *res_mem, *res_irq, *res_irq_rx, *res_irq_tx; - struct mii_bus *bus; -- const char *clk_name; - int i, ret; - - if (!bcm_enet_shared_base[0]) -@@ -1761,14 +1760,12 @@ static int bcm_enet_probe(struct platfor - if (priv->mac_id == 0) { - priv->rx_chan = 0; - priv->tx_chan = 1; -- clk_name = "enet0"; - } else { - priv->rx_chan = 2; - priv->tx_chan = 3; -- clk_name = "enet1"; - } - -- priv->mac_clk = devm_clk_get(&pdev->dev, clk_name); -+ priv->mac_clk = devm_clk_get(&pdev->dev, "enet"); - if (IS_ERR(priv->mac_clk)) { - ret = PTR_ERR(priv->mac_clk); - goto out; |