[PATCH] i386 boot: fix inl() function

From: hchunhui
Date: Tue Jan 31 2012 - 11:56:41 EST



"u32 port" in inl() should be "u16 port".

Signed-off-by: He Chunhui <hchunhui@xxxxxxxxxxxxxxxx>
--- linux-3.3-rc1/arch/x86/boot/boot.h.orig 2012-01-31 23:49:15.858738690 +0800
+++ linux-3.3-rc1/arch/x86/boot/boot.h 2012-01-31 23:49:46.002072974 +0800
@@ -67,7 +67,7 @@ static inline void outl(u32 v, u16 port)
{
asm volatile("outl %0,%1" : : "a" (v), "dN" (port));
}
-static inline u32 inl(u32 port)
+static inline u32 inl(u16 port)
{
u32 v;
asm volatile("inl %1,%0" : "=a" (v) : "dN" (port));
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/