forked from Ivasoft/openwrt
generic: drop outdated kernel version switches in local drivers
This drops the obsolete version switches for non-supported kernels from local drivers in generic target. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
@@ -314,9 +314,8 @@ static inline int b53_write64(struct b53_device *dev, u8 page, u8 reg,
|
||||
#endif
|
||||
|
||||
#include <linux/version.h>
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0))
|
||||
#include <linux/bcm47xx_nvram.h>
|
||||
#endif
|
||||
|
||||
static inline int b53_switch_get_reset_gpio(struct b53_device *dev)
|
||||
{
|
||||
#ifdef CONFIG_BCM47XX
|
||||
@@ -331,11 +330,7 @@ static inline int b53_switch_get_reset_gpio(struct b53_device *dev)
|
||||
}
|
||||
#endif
|
||||
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 1, 0))
|
||||
return bcm47xx_nvram_gpio_pin("robo_reset");
|
||||
#else
|
||||
return -ENOENT;
|
||||
#endif
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1033,9 +1033,6 @@ rtl8306_read_status(struct phy_device *pdev)
|
||||
|
||||
static struct phy_driver rtl8306_driver = {
|
||||
.name = "Realtek RTL8306S",
|
||||
#if (LINUX_VERSION_CODE < KERNEL_VERSION(4,13,0))
|
||||
.flags = PHY_HAS_MAGICANEG,
|
||||
#endif
|
||||
.phy_id = RTL8306_MAGIC,
|
||||
.phy_id_mask = 0xffffffff,
|
||||
.features = PHY_BASIC_FEATURES,
|
||||
|
||||
@@ -1035,14 +1035,6 @@ static int rtl8366_smi_mii_init(struct rtl8366_smi *smi)
|
||||
dev_name(smi->parent));
|
||||
smi->mii_bus->parent = smi->parent;
|
||||
smi->mii_bus->phy_mask = ~(0x1f);
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
|
||||
{
|
||||
int i;
|
||||
smi->mii_bus->irq = smi->mii_irq;
|
||||
for (i = 0; i < PHY_MAX_ADDR; i++)
|
||||
smi->mii_irq[i] = PHY_POLL;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_OF
|
||||
if (np)
|
||||
|
||||
@@ -594,12 +594,9 @@ swconfig_parse_ports(struct sk_buff *msg, struct nlattr *head,
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,2,0)
|
||||
if (nla_parse_nested_deprecated(tb, SWITCH_PORT_ATTR_MAX, nla,
|
||||
port_policy, NULL))
|
||||
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0)
|
||||
if (nla_parse_nested(tb, SWITCH_PORT_ATTR_MAX, nla,
|
||||
port_policy, NULL))
|
||||
#else
|
||||
if (nla_parse_nested(tb, SWITCH_PORT_ATTR_MAX, nla,
|
||||
port_policy))
|
||||
port_policy, NULL))
|
||||
#endif
|
||||
return -EINVAL;
|
||||
|
||||
@@ -623,10 +620,8 @@ swconfig_parse_link(struct sk_buff *msg, struct nlattr *nla,
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,2,0)
|
||||
if (nla_parse_nested_deprecated(tb, SWITCH_LINK_ATTR_MAX, nla, link_policy, NULL))
|
||||
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0)
|
||||
if (nla_parse_nested(tb, SWITCH_LINK_ATTR_MAX, nla, link_policy, NULL))
|
||||
#else
|
||||
if (nla_parse_nested(tb, SWITCH_LINK_ATTR_MAX, nla, link_policy))
|
||||
if (nla_parse_nested(tb, SWITCH_LINK_ATTR_MAX, nla, link_policy, NULL))
|
||||
#endif
|
||||
return -EINVAL;
|
||||
|
||||
@@ -1110,9 +1105,6 @@ static struct genl_ops swconfig_ops[] = {
|
||||
};
|
||||
|
||||
static struct genl_family switch_fam = {
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,10,0)
|
||||
.id = GENL_ID_GENERATE,
|
||||
#endif
|
||||
.name = "switch",
|
||||
.hdrsize = 0,
|
||||
.version = 1,
|
||||
@@ -1298,11 +1290,7 @@ swconfig_init(void)
|
||||
{
|
||||
INIT_LIST_HEAD(&swdevs);
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,10,0)
|
||||
return genl_register_family_with_ops(&switch_fam, swconfig_ops);
|
||||
#else
|
||||
return genl_register_family(&switch_fam);
|
||||
#endif
|
||||
}
|
||||
|
||||
static void __exit
|
||||
|
||||
Reference in New Issue
Block a user