diff options
author | Robert Marko <robert.marko@sartura.hr> | 2022-03-20 19:34:18 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2022-10-02 23:04:39 +0200 |
commit | f5c62c6e9150775ae45a37dd4c2cd0e557329da0 (patch) | |
tree | 21b43563a5a1b7d9b46e35d3f364609196af38e3 /target/linux/ipq40xx | |
parent | 12eebe8871e07fbfb5059f1877b413fa7a3d3c3a (diff) | |
download | upstream-f5c62c6e9150775ae45a37dd4c2cd0e557329da0.tar.gz upstream-f5c62c6e9150775ae45a37dd4c2cd0e557329da0.tar.bz2 upstream-f5c62c6e9150775ae45a37dd4c2cd0e557329da0.zip |
ipq40xx: qca807x: drop kernel version checks
Since kernel 5.4 has been droppped from IPQ40xx, there is no need to keep
the version checks for kernels older than 5.10.
Signed-off-by: Robert Marko <robert.marko@sartura.hr>
Diffstat (limited to 'target/linux/ipq40xx')
-rw-r--r-- | target/linux/ipq40xx/files/drivers/net/phy/qca807x.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c b/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c index 94d5b83a7c..28e0e6bc8e 100644 --- a/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c +++ b/target/linux/ipq40xx/files/drivers/net/phy/qca807x.c @@ -12,9 +12,7 @@ #include <linux/of.h> #include <linux/phy.h> #include <linux/bitfield.h> -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) #include <linux/ethtool_netlink.h> -#endif #include <linux/gpio.h> #include <linux/sfp.h> @@ -191,7 +189,6 @@ static int qca807x_set_tunable(struct phy_device *phydev, } } -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) static bool qca807x_distance_valid(int result) { switch (result) { @@ -324,16 +321,11 @@ static int qca807x_cable_test_start(struct phy_device *phydev) return ret; } -#endif #ifdef CONFIG_GPIOLIB static int qca807x_gpio_get_direction(struct gpio_chip *gc, unsigned int offset) { -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,5,0) return GPIO_LINE_DIRECTION_OUT; -#else - return GPIOF_DIR_OUT; -#endif } static int qca807x_gpio_get_reg(unsigned int offset) @@ -804,9 +796,7 @@ static struct phy_driver qca807x_drivers[] = { { PHY_ID_MATCH_EXACT(PHY_ID_QCA8072), .name = "Qualcomm QCA8072", -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) .flags = PHY_POLL_CABLE_TEST, -#endif /* PHY_GBIT_FEATURES */ .probe = qca807x_probe, .config_init = qca807x_config, @@ -822,17 +812,13 @@ static struct phy_driver qca807x_drivers[] = { .set_tunable = qca807x_set_tunable, .resume = genphy_resume, .suspend = genphy_suspend, -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) .cable_test_start = qca807x_cable_test_start, .cable_test_get_status = qca807x_cable_test_get_status, -#endif }, { PHY_ID_MATCH_EXACT(PHY_ID_QCA8075), .name = "Qualcomm QCA8075", -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) .flags = PHY_POLL_CABLE_TEST, -#endif /* PHY_GBIT_FEATURES */ .probe = qca807x_probe, .config_init = qca807x_config, @@ -848,10 +834,8 @@ static struct phy_driver qca807x_drivers[] = { .set_tunable = qca807x_set_tunable, .resume = genphy_resume, .suspend = genphy_suspend, -#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,8,0) .cable_test_start = qca807x_cable_test_start, .cable_test_get_status = qca807x_cable_test_get_status, -#endif }, { PHY_ID_MATCH_EXACT(PHY_ID_QCA807X_PSGMII), |