diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 07:34:05 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:34:05 -0500 |
commit | 4b40fcee131847069543cc60a3a79887743c53db (patch) | |
tree | b0839f19fa6f815573f0f6f33b6a59666b2ab3c4 /arch/x86/mm/ioremap_32.c | |
parent | e9332cacd74b25548a517b8dd4fff0216f7907db (diff) |
x86: __iomem annotations
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/ioremap_32.c')
-rw-r--r-- | arch/x86/mm/ioremap_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/ioremap_32.c b/arch/x86/mm/ioremap_32.c index ae7e55c8c647..5273ac4aa96a 100644 --- a/arch/x86/mm/ioremap_32.c +++ b/arch/x86/mm/ioremap_32.c | |||
@@ -81,7 +81,7 @@ void __iomem *__ioremap(unsigned long phys_addr, unsigned long size, | |||
81 | * Don't remap the low PCI/ISA area, it's always mapped.. | 81 | * Don't remap the low PCI/ISA area, it's always mapped.. |
82 | */ | 82 | */ |
83 | if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS) | 83 | if (phys_addr >= ISA_START_ADDRESS && last_addr < ISA_END_ADDRESS) |
84 | return (void __iomem *) phys_to_virt(phys_addr); | 84 | return (__force void __iomem *)phys_to_virt(phys_addr); |
85 | 85 | ||
86 | /* | 86 | /* |
87 | * Don't allow anybody to remap normal RAM that we're using.. | 87 | * Don't allow anybody to remap normal RAM that we're using.. |