ath79: remove pre-5.10 specific kernel code
authorDavid Bauer <mail@david-bauer.net>
Tue, 21 Dec 2021 21:00:06 +0000 (22:00 +0100)
committerDavid Bauer <mail@david-bauer.net>
Wed, 29 Dec 2021 02:44:56 +0000 (03:44 +0100)
With Kernel 5.4 support removed, we can get rid of this legacy code.

Signed-off-by: David Bauer <mail@david-bauer.net>
target/linux/ath79/files/drivers/mtd/nand/raw/ar934x_nand.c
target/linux/ath79/files/drivers/mtd/nand/raw/nand_rb4xx.c
target/linux/ath79/files/drivers/mtd/nand/raw/rb91x_nand.c
target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h
target/linux/ath79/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_main.c

index e040726f44f013eafa103945f1413228e5638ba2..fafb3f56b83d40b3611a465792cf655b45bb4953 100644 (file)
@@ -14,9 +14,7 @@
 #include <linux/module.h>
 #include <linux/dma-mapping.h>
 #include <linux/mtd/mtd.h>
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
 #include <linux/mtd/nand.h>
-#endif
 #include <linux/mtd/rawnand.h>
 #include <linux/mtd/partitions.h>
 #include <linux/platform_device.h>
@@ -722,11 +720,7 @@ static void ar934x_nfc_cmdfunc(struct nand_chip *nand, unsigned int command,
                break;
 
        case NAND_CMD_PAGEPROG:
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
                if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_ON_HOST) {
-#else
-               if (nand->ecc.mode == NAND_ECC_HW) {
-#endif
                        /* the data is already written */
                        break;
                }
@@ -1334,29 +1328,15 @@ static int ar934x_nfc_attach_chip(struct nand_chip *nand)
        if (mtd->writesize == 2048)
                nand->options |= NAND_NO_SUBPAGE_WRITE;
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_ON_HOST) {
-#else
-       if (nand->ecc.mode == NAND_ECC_HW) {
-#endif
                ret = ar934x_nfc_setup_hwecc(nfc);
                if (ret)
                        return ret;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        } else if (nand->ecc.engine_type != NAND_ECC_ENGINE_TYPE_SOFT) {
                dev_err(dev, "unknown ECC mode %d\n", nand->ecc.engine_type);
-#else
-       } else if (nand->ecc.mode != NAND_ECC_SOFT) {
-               dev_err(dev, "unknown ECC mode %d\n", nand->ecc.mode);
-#endif
                return -EINVAL;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        } else if ((nand->ecc.algo != NAND_ECC_ALGO_BCH) &&
                   (nand->ecc.algo != NAND_ECC_ALGO_HAMMING)) {
-#else
-       } else if ((nand->ecc.algo != NAND_ECC_BCH) &&
-                  (nand->ecc.algo != NAND_ECC_HAMMING)) {
-#endif
                dev_err(dev, "unknown software ECC algo %d\n", nand->ecc.algo);
                return -EINVAL;
        }
@@ -1445,11 +1425,7 @@ static int ar934x_nfc_probe(struct platform_device *pdev)
        nand->legacy.read_byte = ar934x_nfc_read_byte;
        nand->legacy.write_buf = ar934x_nfc_write_buf;
        nand->legacy.read_buf = ar934x_nfc_read_buf;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        nand->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST;   /* default */
-#else
-       nand->ecc.mode = NAND_ECC_HW;   /* default */
-#endif
        nand->priv = nfc;
        platform_set_drvdata(pdev, nfc);
 
@@ -1489,12 +1465,8 @@ static int ar934x_nfc_remove(struct platform_device *pdev)
 
        nfc = platform_get_drvdata(pdev);
        if (nfc) {
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0)
                mtd_device_unregister(nand_to_mtd(&nfc->nand_chip));
                nand_cleanup(&nfc->nand_chip);
-#else
-               nand_release(&nfc->nand_chip);
-#endif
                ar934x_nfc_free_buf(nfc);
        }
 
index 22e2660b38f91ca280debb78c4cfd10f944fdd72..e42631525c4b56dad37bc159ccd9ff2e9d62a288 100644 (file)
@@ -188,13 +188,8 @@ static int rb4xx_nand_probe(struct platform_device *pdev)
        if (mtd->writesize == 512)
                mtd_set_ooblayout(mtd, &rb4xx_nand_ecclayout_ops);
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        nand->chip.ecc.engine_type      = NAND_ECC_ENGINE_TYPE_SOFT;
        nand->chip.ecc.algo             = NAND_ECC_ALGO_HAMMING;
-#else
-       nand->chip.ecc.mode             = NAND_ECC_SOFT;
-       nand->chip.ecc.algo             = NAND_ECC_HAMMING;
-#endif
        nand->chip.options              = NAND_NO_SUBPAGE_WRITE;
        nand->chip.priv                 = nand;
 
@@ -211,12 +206,8 @@ static int rb4xx_nand_probe(struct platform_device *pdev)
 
        ret = mtd_device_register(mtd, NULL, 0);
        if (ret) {
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0)
                mtd_device_unregister(nand_to_mtd(&nand->chip));
                nand_cleanup(&nand->chip);
-#else
-               nand_release(&nand->chip);
-#endif
                return ret;
        }
 
@@ -227,12 +218,8 @@ static int rb4xx_nand_remove(struct platform_device *pdev)
 {
        struct rb4xx_nand *nand = platform_get_drvdata(pdev);
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0)
-               mtd_device_unregister(nand_to_mtd(&nand->chip));
-               nand_cleanup(&nand->chip);
-#else
-               nand_release(&nand->chip);
-#endif
+       mtd_device_unregister(nand_to_mtd(&nand->chip));
+       nand_cleanup(&nand->chip);
 
        return 0;
 }
index e2319445193afaa3455e57e3d81ade840ae5ec3f..ac9a2ac8acbd2fd1466e7c1f084624589a4dfd15 100644 (file)
@@ -254,12 +254,8 @@ static void rb91x_nand_write_buf(struct nand_chip *chip, const u8 *buf, int len)
 
 static void rb91x_nand_release(struct rb91x_nand_drvdata *drvdata)
 {
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0)
        mtd_device_unregister(nand_to_mtd(&drvdata->chip));
        nand_cleanup(&drvdata->chip);
-#else
-       nand_release(&drvdata->chip);
-#endif
 }
 
 static int rb91x_nand_probe(struct platform_device *pdev)
@@ -304,13 +300,8 @@ static int rb91x_nand_probe(struct platform_device *pdev)
        drvdata->chip.legacy.read_buf = rb91x_nand_read_buf;
 
        drvdata->chip.legacy.chip_delay = 25;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,9,0)
        drvdata->chip.ecc.engine_type      = NAND_ECC_ENGINE_TYPE_SOFT;
        drvdata->chip.ecc.algo             = NAND_ECC_ALGO_HAMMING;
-#else
-       drvdata->chip.ecc.mode             = NAND_ECC_SOFT;
-       drvdata->chip.ecc.algo             = NAND_ECC_HAMMING;
-#endif
        drvdata->chip.options = NAND_NO_SUBPAGE_WRITE;
 
        r = nand_scan(&drvdata->chip, 1);
index 5ff9439f0d11ada26dfe1440e36e356a06f3be56..1955cd288f3c5e548ef8bdf8bc976e98c93676aa 100644 (file)
@@ -178,11 +178,7 @@ struct ag71xx {
 
        struct phy_device       *phy_dev;
        void                    *phy_priv;
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,10,0)
        phy_interface_t         phy_if_mode;
-#else
-       int                     phy_if_mode;
-#endif
 
        unsigned int            link;
        unsigned int            speed;
index a38b336a8d8037f3d6faf9d3b4a9ed77005dd223..2fc18d597940c92610ca9e99c1319151afcae13e 100644 (file)
@@ -1198,11 +1198,7 @@ static void ag71xx_oom_timer_handler(struct timer_list *t)
        napi_schedule(&ag->napi);
 }
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
 static void ag71xx_tx_timeout(struct net_device *dev, unsigned int txqueue)
-#else
-static void ag71xx_tx_timeout(struct net_device *dev)
-#endif
 {
        struct ag71xx *ag = netdev_priv(dev);
 
@@ -1679,13 +1675,8 @@ static int ag71xx_probe(struct platform_device *pdev)
                eth_random_addr(dev->dev_addr);
        }
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,10,0)
        err = of_get_phy_mode(np, &ag->phy_if_mode);
        if (err < 0) {
-#else
-       ag->phy_if_mode = of_get_phy_mode(np);
-       if (ag->phy_if_mode < 0) {
-#endif
                dev_err(&pdev->dev, "missing phy-mode property in DT\n");
                return ag->phy_if_mode;
        }