diff options
author | Fabio Estevam <festevam@gmail.com> | 2012-01-10 05:54:23 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-11 02:57:20 +0400 |
commit | 2193ceabdcde1fca5e017acf1d0023285531748f (patch) | |
tree | 5b2116a0256006e5e318b5bbb9231a71410b0dcf /drivers/isdn/i4l | |
parent | aae54cff9255f190ec712468d1b40e63bb51e127 (diff) | |
download | linux-2193ceabdcde1fca5e017acf1d0023285531748f.tar.xz |
drivers: isdn: Fix dependency for ISDN_PPP
Fix the following build warning:
warning: (ISDN_PPP) selects SLHC which has unmet direct dependencies (NETDEVICES)
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/isdn/i4l')
-rw-r--r-- | drivers/isdn/i4l/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/i4l/Kconfig b/drivers/isdn/i4l/Kconfig index 9c6650ea848e..2302fbe70ac6 100644 --- a/drivers/isdn/i4l/Kconfig +++ b/drivers/isdn/i4l/Kconfig @@ -6,7 +6,7 @@ if ISDN_I4L config ISDN_PPP bool "Support synchronous PPP" - depends on INET + depends on INET && NETDEVICES select SLHC help Over digital connections such as ISDN, there is no need to |