All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i386 boot: fix inl() function
@ 2012-01-31 16:48 hchunhui
  2012-01-31 19:13 ` [tip:x86/boot] x86, boot: Fix port argument to " tip-bot for hchunhui@mail.ustc.edu.cn
  2012-01-31 20:16 ` tip-bot for He Chunhui
  0 siblings, 2 replies; 3+ messages in thread
From: hchunhui @ 2012-01-31 16:48 UTC (permalink / raw)
  To: hpa; +Cc: linux-kernel


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

Signed-off-by: He Chunhui <hchunhui@mail.ustc.edu.cn>
--- 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));

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-31 20:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-31 16:48 [PATCH] i386 boot: fix inl() function hchunhui
2012-01-31 19:13 ` [tip:x86/boot] x86, boot: Fix port argument to " tip-bot for hchunhui@mail.ustc.edu.cn
2012-01-31 20:16 ` tip-bot for He Chunhui

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.