Skip to content

Commit

Permalink
staging,dgap: Add dependency on HAS_IOMEM
Browse files Browse the repository at this point in the history
On archs like S390 or um this driver cannot build nor work.
Make it depend on HAS_IOMEM to bypass build failures.

drivers/staging/dgap/dgap_driver.c: In function ‘dgap_cleanup_board’:
drivers/staging/dgap/dgap_driver.c:457:3: error: implicit declaration of function ‘iounmap’ [-Werror=implicit-function-declaration]
drivers/staging/dgap/dgap_driver.c: In function ‘dgap_do_remap’:
drivers/staging/dgap/dgap_driver.c:694:2: error: implicit declaration of function ‘ioremap’ [-Werror=implicit-function-declaration]

Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Richard Weinberger authored and David S. Miller committed Jan 15, 2014
1 parent c361f1a commit 29c56c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/staging/dgap/Kconfig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
config DGAP
tristate "Digi EPCA PCI products"
default n
depends on TTY
depends on TTY && HAS_IOMEM
---help---
Driver for the Digi International EPCA PCI based product line

0 comments on commit 29c56c7

Please sign in to comment.