aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJonas Gorski <jogo@openwrt.org>2016-01-24 12:35:59 +0000
committerJonas Gorski <jogo@openwrt.org>2016-01-24 12:35:59 +0000
commit38719ecca4cb1c120e8122495a676fe7c0bd66ce (patch)
tree9038e5434c7d9454e45f50780966a8b6b8f4fbaf /target
parentfb713ddd4dd49fb60ee4ab732071abf2c3ad5fc5 (diff)
downloadupstream-38719ecca4cb1c120e8122495a676fe7c0bd66ce.tar.gz
upstream-38719ecca4cb1c120e8122495a676fe7c0bd66ce.tar.bz2
upstream-38719ecca4cb1c120e8122495a676fe7c0bd66ce.zip
swconfig: drop linux < 3.13 code paths
The oldest kernel we support is 3.18, no need to keep code paths for older kernels. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 48471
Diffstat (limited to 'target')
-rw-r--r--target/linux/generic/files/drivers/net/phy/swconfig.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/swconfig.c b/target/linux/generic/files/drivers/net/phy/swconfig.c
index 9a5f1e9123..a47af3c0c6 100644
--- a/target/linux/generic/files/drivers/net/phy/swconfig.c
+++ b/target/linux/generic/files/drivers/net/phy/swconfig.c
@@ -1173,33 +1173,13 @@ static int __init
swconfig_init(void)
{
int err;
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0))
- int i;
-#endif
INIT_LIST_HEAD(&swdevs);
-#if (LINUX_VERSION_CODE < KERNEL_VERSION(3,13,0))
- err = genl_register_family(&switch_fam);
- if (err)
- return err;
-
- for (i = 0; i < ARRAY_SIZE(swconfig_ops); i++) {
- err = genl_register_ops(&switch_fam, &swconfig_ops[i]);
- if (err)
- goto unregister;
- }
- return 0;
-
-unregister:
- genl_unregister_family(&switch_fam);
- return err;
-#else
err = genl_register_family_with_ops(&switch_fam, swconfig_ops);
if (err)
return err;
return 0;
-#endif
}
static void __exit