All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]io_apic.c: fix compile warning
@ 2009-06-17 14:25 Figo.zhang
  2009-06-17 14:28 ` Alan Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Figo.zhang @ 2009-06-17 14:25 UTC (permalink / raw)
  To: Ingo Molnar; +Cc: lkml

fix compile warning:
arch/x86/kernel/apic/io_apic.c: In function ‘ioapic_write_entry’:
arch/x86/kernel/apic/io_apic.c:466: warning: ‘eu’ is used uninitialized in this function
arch/x86/kernel/apic/io_apic.c:465: note: ‘eu’ was declared here

Signed-off-by: Figo.zhang <figo1802@gmail.com>
--- 

 arch/x86/kernel/apic/io_apic.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/apic/io_apic.c b/arch/x86/kernel/apic/io_apic.c
index ef8d929..e9ca066 100644
--- a/arch/x86/kernel/apic/io_apic.c
+++ b/arch/x86/kernel/apic/io_apic.c
@@ -462,7 +462,7 @@ static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
 static void
 __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
 {
-	union entry_union eu;
+	union entry_union eu = {{0,0}};
 	eu.entry = e;
 	io_apic_write(apic, 0x11 + 2*pin, eu.w2);
 	io_apic_write(apic, 0x10 + 2*pin, eu.w1);



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

end of thread, other threads:[~2009-06-17 14:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-17 14:25 [PATCH]io_apic.c: fix compile warning Figo.zhang
2009-06-17 14:28 ` Alan Cox
2009-06-17 14:29   ` Figo.zhang
     [not found]   ` <bb33bcf20906170729n616dcdbfkc02a168347612138@mail.gmail.com>
2009-06-17 14:35     ` Subrata Modak

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.