Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cdcb38352b6cf97241d4c3969f93f792026d18cc
Commit:     cdcb38352b6cf97241d4c3969f93f792026d18cc
Parent:     c16f7bd8d48f64ba2d87ab821288815c9e35b14d
Author:     Ben Dooks <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 17 20:15:13 2006 +0100
Committer:  Russell King <[EMAIL PROTECTED]>
CommitDate: Sun Dec 17 23:37:52 2006 +0000

    [ARM] 4041/1: S3C24XX: Fix sparse errors from VA addresses
    
    Fix address-space conversion errors from passing addresses
    generated from include/asm-arm/arch-s3c2410/map.h by adding
    an __force argument to the `void __iomem *` for all the
    virtual addresses.
    
    Signed-off-by: Ben Dooks <[EMAIL PROTECTED]>
    Signed-off-by: Russell King <[EMAIL PROTECTED]>
---
 include/asm-arm/arch-s3c2410/map.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/include/asm-arm/arch-s3c2410/map.h 
b/include/asm-arm/arch-s3c2410/map.h
index 4ef4eeb..6746114 100644
--- a/include/asm-arm/arch-s3c2410/map.h
+++ b/include/asm-arm/arch-s3c2410/map.h
@@ -25,7 +25,7 @@
  */
 
 #ifndef __ASSEMBLY__
-#define S3C2410_ADDR(x)          ((void __iomem *)0xF0000000 + (x))
+#define S3C2410_ADDR(x)          ((void __iomem __force *)0xF0000000 + (x))
 #else
 #define S3C2410_ADDR(x)          (0xF0000000 + (x))
 #endif
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to