From: Corentin Chary Date: Sun, 24 Jan 2010 10:17:15 +0000 (+0100) Subject: asus-laptop: set initial lcd state X-Git-Tag: v2.6.34-rc1~221^2~5^2~5 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=47ee0e99524a7ee0185e3c38423cc17cc1318ddc;p=karo-tx-linux.git asus-laptop: set initial lcd state There is no way to find the initial lcd state. A quick workaround is to set it "on" by default. Anyway this feature is scheduled for removal. Signed-off-by: Corentin Chary --- diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index ca144d251b00..1d61094d3b5f 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c @@ -1421,6 +1421,8 @@ static int __devinit asus_acpi_init(struct asus_laptop *asus) !acpi_check_handle(asus->handle, METHOD_GPS_OFF, NULL) && !acpi_check_handle(asus->handle, METHOD_GPS_STATUS, NULL)) asus_gps_switch(asus, 1); + + asus->lcd_state = 1; /* LCD should be on when the module load */ return result; }