diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-03-20 15:36:44 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-22 01:55:36 -0400 |
commit | d44c3a2e0e5d2c75d22284462c66d166604b1f18 (patch) | |
tree | 3ce27b093bce90d0b9b5926be35b1cf8fd520f52 /drivers | |
parent | 5ae4efbcd2611562a8b93596be034e63495706a5 (diff) |
netdev: expose net_device_ops compat as config option
Now that most network device drivers in (all but one in x86_64 allmodconfig)
support net_device_ops. Expose it as a configuration parameter. Still
need to address even older 32 bit drivers, and other arch before
compatiablity can be scheduled for removal in some future release.
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index 6b1af549b2ff..533cc411ee48 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
@@ -26,6 +26,15 @@ menuconfig NETDEVICES | |||
26 | # that for each of the symbols. | 26 | # that for each of the symbols. |
27 | if NETDEVICES | 27 | if NETDEVICES |
28 | 28 | ||
29 | config COMPAT_NET_DEV_OPS | ||
30 | default y | ||
31 | bool "Enable older network device API compatiablity" | ||
32 | ---help--- | ||
33 | This option enables kernel compatiability with older network devices | ||
34 | that do not use net_device_ops interface. | ||
35 | |||
36 | If unsure, say Y. | ||
37 | |||
29 | config IFB | 38 | config IFB |
30 | tristate "Intermediate Functional Block support" | 39 | tristate "Intermediate Functional Block support" |
31 | depends on NET_CLS_ACT | 40 | depends on NET_CLS_ACT |