]> asedeno.scripts.mit.edu Git - linux.git/commit
ARM: pxa: fix colibri build
authorArnd Bergmann <arnd@arndb.de>
Sun, 16 Mar 2014 19:36:28 +0000 (20:36 +0100)
committerArnd Bergmann <arnd@arndb.de>
Fri, 21 Mar 2014 17:26:02 +0000 (18:26 +0100)
commit847e34969d9e51d7f931fc37867adc140c03a61a
tree4461d5079950370ed2c1caf5e0e51e129f51a746
parente914f19f03f05e7b1f1e3925cd2545ec57a627a1
ARM: pxa: fix colibri build

The colibri_ohci_init function performs a register access through
the io_p2v() macro, which requires the IOMEM macro to be defined.

By explicitly including the asm/io.h header file that contains
this macro, we avoid the build error:

arch/arm/mach-pxa/colibri-evalboard.c: In function 'colibri_ohci_init':
arch/arm/mach-pxa/colibri-evalboard.c:68:2: error: implicit declaration of function 'IOMEM' [-Werror=implicit-function-declaration]
  UP2OCR = UP2OCR_HXS | UP2OCR_HXOE | UP2OCR_DPPDE | UP2OCR_DMPDE;

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Eric Miao <eric.y.miao@gmail.com>
Cc: Russell King <linux@arm.linux.org.uk>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Daniel Mack <zonque@gmail.com>
arch/arm/mach-pxa/colibri-evalboard.c