diff options
author | Al Stone <al.stone@linaro.org> | 2013-11-22 15:13:10 -0700 |
---|---|---|
committer | Graeme Gregory <graeme.gregory@linaro.org> | 2013-11-26 12:19:56 +0000 |
commit | a5f5cd0a171ab2504f9530e00937ba4c06ff4c25 (patch) | |
tree | 67b380bc08eec07a633b247a38ac0caaabb10a68 | |
parent | be7059a8d22cba31b071ebe75ddc0d8b224d12dc (diff) | |
download | leg-kernel-a5f5cd0a171ab2504f9530e00937ba4c06ff4c25.tar.gz |
ACPI: ARM: Clean up a leftover comment that is no longer pertinent.
The comment questioned whether the header file had a typo when it
in fact does not.
Signed-off-by: Al Stone <al.stone@linaro.org>
-rw-r--r-- | arch/arm/include/asm/io.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/arm/include/asm/io.h b/arch/arm/include/asm/io.h index b0f33347b75e..61577dc0a692 100644 --- a/arch/arm/include/asm/io.h +++ b/arch/arm/include/asm/io.h @@ -328,11 +328,7 @@ extern void _memset_io(volatile void __iomem *, int, size_t); */ #define ioremap(cookie,size) __arm_ioremap((cookie), (size), MT_DEVICE) #define ioremap_nocache(cookie,size) __arm_ioremap((cookie), (size), MT_DEVICE) -/* - * BOZO: is this just mis-named as ioremap_cached()? - * renaming it to ioremap_cache() to find out for now. - #define ioremap_cached(cookie,size) __arm_ioremap((cookie), (size), MT_DEVICE_CACHED) - */ +#define ioremap_cached(cookie, size) __arm_ioremap((cookie), (size), MT_DEVICE_CACHED) #define ioremap_cache(cookie,size) __arm_ioremap((cookie), (size), MT_DEVICE_CACHED) #define ioremap_wc(cookie,size) __arm_ioremap((cookie), (size), MT_DEVICE_WC) #define iounmap __arm_iounmap |