Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=cca67164bbdb083df9adb6480822518b0f4b358f
Commit:     cca67164bbdb083df9adb6480822518b0f4b358f
Parent:     6f834197a79d34d65ca44e9c77f2571edbcfb64b
Author:     Haavard Skinnemoen <[EMAIL PROTECTED]>
AuthorDate: Mon Aug 13 16:24:01 2007 +0200
Committer:  Haavard Skinnemoen <[EMAIL PROTECTED]>
CommitDate: Wed Aug 15 16:36:56 2007 +0200

    [AVR32] Define mmiowb()
    
    Add empty definition of mmiowb() since some drivers need it. Uncached
    writes are strongly ordered on AVR32. They may be delayed if the
    dcache is busy doing a writeback, but AFAICT that's not what this
    macro is supposed to deal with, at least on UP systems.
    
    We might have to revisit this definition when a SMP-capable AVR32 CPU
    comes along, depending on how the busses and cache coherency stuff
    end up being implemented.
    
    Signed-off-by: Haavard Skinnemoen <[EMAIL PROTECTED]>
---
 include/asm-avr32/io.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/asm-avr32/io.h b/include/asm-avr32/io.h
index e30d4b3..64bb92b 100644
--- a/include/asm-avr32/io.h
+++ b/include/asm-avr32/io.h
@@ -255,6 +255,8 @@ static inline void memset_io(volatile void __iomem *addr, 
unsigned char val,
        memset((void __force *)addr, val, count);
 }
 
+#define mmiowb()
+
 #define IO_SPACE_LIMIT 0xffffffff
 
 extern void __iomem *__ioremap(unsigned long offset, size_t size,
-
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