Commit 32280ca1 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds

[PATCH] x86_64: Add a missing __iomem pointed out by Linus.

Add a missing __iomem pointed out by Linus.
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent cf9b7b68
......@@ -10,7 +10,7 @@
#ifdef __i386__
#define VGABASE (__ISA_IO_base + 0xb8000)
#else
#define VGABASE ((void *)0xffffffff800b8000UL)
#define VGABASE ((void __iomem *)0xffffffff800b8000UL)
#endif
#define MAX_YPOS 25
......
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