From: Andrew Morton Date: Tue, 6 Mar 2007 10:29:42 +0000 (-0800) Subject: sony-laptop: fix uninitialised variable X-Git-Tag: v2.6.21-rc4~55^2~7 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=8607c673bdd593d4ce439a36412a213a8efb282b;p=linux-2.6-omap-h63xx.git sony-laptop: fix uninitialised variable drivers/misc/sony-laptop.c: In function 'sony_acpi_add': drivers/misc/sony-laptop.c:456: warning: 'result' may be used uninitialized in this function The compiler seems to actually be telling the truth this time. Cc: Mattia Dongili Signed-off-by: Andrew Morton Signed-off-by: Len Brown --- diff --git a/drivers/misc/sony-laptop.c b/drivers/misc/sony-laptop.c index 2ebe240dd53..ac708bc2f9f 100644 --- a/drivers/misc/sony-laptop.c +++ b/drivers/misc/sony-laptop.c @@ -453,7 +453,7 @@ static int sony_acpi_resume(struct acpi_device *device) static int sony_acpi_add(struct acpi_device *device) { acpi_status status; - int result; + int result = 0; acpi_handle handle; sony_acpi_acpi_device = device;