From patchwork Tue Jan 20 15:17:45 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corentin Chary X-Patchwork-Id: 3306 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n0KFDM03027971 for ; Tue, 20 Jan 2009 07:13:27 -0800 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757084AbZATPR7 (ORCPT ); Tue, 20 Jan 2009 10:17:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757279AbZATPR7 (ORCPT ); Tue, 20 Jan 2009 10:17:59 -0500 Received: from iksaif.net ([88.191.73.63]:59559 "EHLO iksaif.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757232AbZATPR5 (ORCPT ); Tue, 20 Jan 2009 10:17:57 -0500 Received: from localhost.localdomain (cxr69-11-88-180-139-205.fbx.proxad.net [88.180.139.205]) (Authenticated sender: corentincj@iksaif.net) by iksaif.net (Postfix) with ESMTPA id F3DD8C90072; Tue, 20 Jan 2009 16:20:14 +0100 (CET) From: Corentin Chary To: lenb@kernel.org Cc: linux-acpi@vger.kernel.org, Corentin Chary Subject: [PATCH 06/10] asus-laptop: fix label indentation Date: Tue, 20 Jan 2009 16:17:45 +0100 Message-Id: <1232464669-29619-7-git-send-email-corentincj@iksaif.net> X-Mailer: git-send-email 1.6.1 In-Reply-To: <1232464669-29619-1-git-send-email-corentincj@iksaif.net> References: <1232464669-29619-1-git-send-email-corentincj@iksaif.net> Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org Fix the label indentation Signed-off-by: Corentin Chary --- drivers/platform/x86/asus-laptop.c | 16 ++++++++-------- 1 files changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index 53dbfb4..56af6cf 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c @@ -1184,7 +1184,7 @@ static int asus_hotk_add(struct acpi_device *device) /* GPS is on by default */ write_status(NULL, 1, GPS_ON); - end: +end: if (result) { kfree(hotk->name); kfree(hotk); @@ -1393,25 +1393,25 @@ static int __init asus_laptop_init(void) return 0; - fail_sysfs: +fail_sysfs: platform_device_del(asuspf_device); - fail_platform_device2: +fail_platform_device2: platform_device_put(asuspf_device); - fail_platform_device1: +fail_platform_device1: platform_driver_unregister(&asuspf_driver); - fail_platform_driver: +fail_platform_driver: asus_led_exit(); - fail_led: +fail_led: asus_input_exit(); - fail_input: +fail_input: asus_backlight_exit(); - fail_backlight: +fail_backlight: return result; }