From patchwork Wed Apr 1 13:10:44 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mattia Dongili X-Patchwork-Id: 15643 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 n31DBBa5006511 for ; Wed, 1 Apr 2009 13:11:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754828AbZDANKv (ORCPT ); Wed, 1 Apr 2009 09:10:51 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753949AbZDANKv (ORCPT ); Wed, 1 Apr 2009 09:10:51 -0400 Received: from static-220-247-10-204.b-man.svips.gol.ne.jp ([220.247.10.204]:56572 "EHLO smtp.kamineko.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754828AbZDANKt (ORCPT ); Wed, 1 Apr 2009 09:10:49 -0400 Received: from tadamune.kamineko.org (unknown [192.168.1.21]) by smtp.kamineko.org (Postfix) with ESMTP id 13B6B14328; Wed, 1 Apr 2009 22:10:48 +0900 (JST) Received: by tadamune.kamineko.org (Postfix, from userid 1000) id 131F713124; Wed, 1 Apr 2009 22:10:48 +0900 (JST) From: Mattia Dongili To: Len Brown Cc: linux-acpi@vger.kernel.org, Alessio Igor Bogani , Mattia Dongili Subject: [PATCH 1/4] sony-laptop: Fix some typos in log messages (Unabe/Unable) Date: Wed, 1 Apr 2009 22:10:44 +0900 Message-Id: <1238591447-13338-2-git-send-email-malattia@linux.it> X-Mailer: git-send-email 1.6.2.1 In-Reply-To: <1238591447-13338-1-git-send-email-malattia@linux.it> References: <1238591447-13338-1-git-send-email-malattia@linux.it> Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org From: Alessio Igor Bogani Signed-off-by: Alessio Igor Bogani Signed-off-by: Mattia Dongili --- drivers/platform/x86/sony-laptop.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index 0f71031..5837156 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c @@ -397,7 +397,7 @@ static int sony_laptop_setup_input(struct acpi_device *acpi_device) sony_laptop_input.wq = create_singlethread_workqueue("sony-laptop"); if (!sony_laptop_input.wq) { printk(KERN_ERR DRV_PFX - "Unabe to create workqueue.\n"); + "Unable to create workqueue.\n"); error = -ENXIO; goto err_free_kfifo; } @@ -1267,7 +1267,7 @@ static int sony_nc_add(struct acpi_device *device) result = sony_laptop_setup_input(device); if (result) { printk(KERN_ERR DRV_PFX - "Unabe to create input devices.\n"); + "Unable to create input devices.\n"); goto outwalk; } @@ -2816,7 +2816,7 @@ static int sony_pic_add(struct acpi_device *device) result = sony_pic_possible_resources(device); if (result) { printk(KERN_ERR DRV_PFX - "Unabe to read possible resources.\n"); + "Unable to read possible resources.\n"); goto err_free_resources; } @@ -2824,7 +2824,7 @@ static int sony_pic_add(struct acpi_device *device) result = sony_laptop_setup_input(device); if (result) { printk(KERN_ERR DRV_PFX - "Unabe to create input devices.\n"); + "Unable to create input devices.\n"); goto err_free_resources; }