diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-02-02 14:40:30 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-02-15 12:04:45 -0200 |
commit | 2e2ba5d1e26465fe188729e310e7928ddf3d9b3e (patch) | |
tree | cc48d5e7e8587f00d4390a298f346cd47f3c3da6 /drivers/media/radio/wl128x | |
parent | a3db60bcf7671cc011ab4f848cbc40ff7ab52c1e (diff) | |
download | linux-3.10-2e2ba5d1e26465fe188729e310e7928ddf3d9b3e.tar.gz linux-3.10-2e2ba5d1e26465fe188729e310e7928ddf3d9b3e.tar.bz2 linux-3.10-2e2ba5d1e26465fe188729e310e7928ddf3d9b3e.zip |
[media] wl128x: fix build errors when GPIOLIB is not enabled
From: Randy Dunlap <rdunlap@xenotime.net>
Fix wl128x Kconfig to depend on GPIOLIB since TI_ST also
depends on GPIOLIB.
(.text+0xe6d60): undefined reference to `st_register'
(.text+0xe7016): undefined reference to `st_unregister'
(.text+0xe70ce): undefined reference to `st_unregister'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Acked-by: Manjunatha Halli <manjunatha_halli@ti.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/radio/wl128x')
-rw-r--r-- | drivers/media/radio/wl128x/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/radio/wl128x/Kconfig b/drivers/media/radio/wl128x/Kconfig index 86b28579f0c..ea1e6545df3 100644 --- a/drivers/media/radio/wl128x/Kconfig +++ b/drivers/media/radio/wl128x/Kconfig @@ -4,8 +4,8 @@ menu "Texas Instruments WL128x FM driver (ST based)" config RADIO_WL128X tristate "Texas Instruments WL128x FM Radio" - depends on VIDEO_V4L2 && RFKILL - select TI_ST if NET && GPIOLIB + depends on VIDEO_V4L2 && RFKILL && GPIOLIB + select TI_ST if NET help Choose Y here if you have this FM radio chip. |