diff options
| author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2009-06-22 17:31:20 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2009-06-23 07:16:44 -0400 |
| commit | fec37ab56f5b86b413f71258f36b181f57180d9c (patch) | |
| tree | 82939c83f6851011e12ab199cf90cf2956c685ea | |
| parent | 96f2ebd2e10417da151202c750d8664767a2194b (diff) | |
can: let SJA1000 driver depend on HAS_IOMEM
Fixes this compile error on s390:
drivers/net/can/sja1000/sja1000_platform.c: In function 'sp_read_reg':
drivers/net/can/sja1000/sja1000_platform.c:42: error: implicit declaration of function 'ioread8'
drivers/net/can/sja1000/sja1000_platform.c: In function 'sp_write_reg':
drivers/net/can/sja1000/sja1000_platform.c:47: error: implicit declaration of function 'iowrite8'
drivers/net/can/sja1000/sja1000_platform.c: In function 'sp_probe':
drivers/net/can/sja1000/sja1000_platform.c:79: error: implicit declaration of function 'ioremap_nocache'
Cc: Wolfgang Grandegger <wg@grandegger.com>
Cc: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
| -rw-r--r-- | drivers/net/can/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/can/Kconfig b/drivers/net/can/Kconfig index d5e18812bf49..33821a81cbf8 100644 --- a/drivers/net/can/Kconfig +++ b/drivers/net/can/Kconfig | |||
| @@ -36,7 +36,7 @@ config CAN_CALC_BITTIMING | |||
| 36 | If unsure, say Y. | 36 | If unsure, say Y. |
| 37 | 37 | ||
| 38 | config CAN_SJA1000 | 38 | config CAN_SJA1000 |
| 39 | depends on CAN_DEV | 39 | depends on CAN_DEV && HAS_IOMEM |
| 40 | tristate "Philips SJA1000" | 40 | tristate "Philips SJA1000" |
| 41 | ---help--- | 41 | ---help--- |
| 42 | Driver for the SJA1000 CAN controllers from Philips or NXP | 42 | Driver for the SJA1000 CAN controllers from Philips or NXP |
