diff options
| author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-12-13 03:34:18 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-13 12:05:48 -0500 |
| commit | a3808ac156f503dd2a00a059d9ff4677ce75244f (patch) | |
| tree | 6685441392ee1ca882c5ca0a6d585eb8d6e167ad | |
| parent | 89040b21e7e2205985feb77f9a83138ab9cb0dfd (diff) | |
[PATCH] isicom: fix build with PCI disabled
With CONFIG_PCI=n:
drivers/char/isicom.c: In function 'isicom_probe':
drivers/char/isicom.c:1793: warning: implicit declaration of function
'pci_request_region'
drivers/char/isicom.c:1827: warning: implicit declaration of function
'pci_release_region'
Let's CONFIG_ISI depend on CONFIG_PCI.
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
| -rw-r--r-- | drivers/char/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 0a3aee29e0..91133bea8c 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
| @@ -218,7 +218,7 @@ config MOXA_SMARTIO_NEW | |||
| 218 | 218 | ||
| 219 | config ISI | 219 | config ISI |
| 220 | tristate "Multi-Tech multiport card support (EXPERIMENTAL)" | 220 | tristate "Multi-Tech multiport card support (EXPERIMENTAL)" |
| 221 | depends on SERIAL_NONSTANDARD | 221 | depends on SERIAL_NONSTANDARD && PCI |
| 222 | select FW_LOADER | 222 | select FW_LOADER |
| 223 | help | 223 | help |
| 224 | This is a driver for the Multi-Tech cards which provide several | 224 | This is a driver for the Multi-Tech cards which provide several |
