Commit 92fe15a3 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: add __raw_writeq definition

The x86_64 build requires a definition for __raw_writeq.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent ff23db53
...@@ -45,8 +45,13 @@ static inline void writel(unsigned int b, volatile void __iomem *addr) ...@@ -45,8 +45,13 @@ static inline void writel(unsigned int b, volatile void __iomem *addr)
{ {
*(volatile unsigned int __force *) addr = b; *(volatile unsigned int __force *) addr = b;
} }
static inline void writeq(unsigned int b, volatile void __iomem *addr)
{
*(volatile unsigned long long __force *) addr = b;
}
#define __raw_writeb writeb #define __raw_writeb writeb
#define __raw_writew writew #define __raw_writew writew
#define __raw_writel writel #define __raw_writel writel
#define __raw_writeq writeq
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment