From: Julien Valroff Date: Fri, 27 Feb 2009 17:55:11 +0000 (+0000) Subject: Patch from Danny Kukawka X-Git-Url: https://gitweb.devoid-pointer.net/?a=commitdiff_plain;h=4a7411c5852577bb70ba207a2af682574be7e24e;p=omnibook.git Patch from Danny Kukawka fix compiler warning about use uninitialized variable on ix86 --- diff --git a/acpi.c b/acpi.c index c6a45ff..db370da 100644 --- a/acpi.c +++ b/acpi.c @@ -330,7 +330,7 @@ static int get_bt_status(const struct acpi_backend_data *priv_data, unsigned int /* * Get the Bluetooth + Wireless status using the ANTR method - * FIXME: what if ANTR and BTST disagree ? we thrust ANTR for now + * FIXME: what if ANTR and BTST disagree ? we trust ANTR for now */ static int get_wireless_status(const struct acpi_backend_data *priv_data, unsigned int *state) { diff --git a/nbsmi.c b/nbsmi.c index 3be9cb9..4bf7143 100644 --- a/nbsmi.c +++ b/nbsmi.c @@ -127,9 +127,10 @@ static inline u32 ati_do_smi_call(u16 function) static inline u32 intel_do_smi_call(u16 function, struct pci_dev *lpc_bridge) { - u32 state, sci_en; + u32 state; unsigned long flags; u32 retval = 0; + u32 sci_en = 0; local_irq_save(flags); preempt_disable();