From patchwork Fri Feb 5 18:02:32 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bastien Nocera X-Patchwork-Id: 77373 X-Patchwork-Delegate: jikos@jikos.cz Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o15I2h45032186 for ; Fri, 5 Feb 2010 18:02:43 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933693Ab0BESCn (ORCPT ); Fri, 5 Feb 2010 13:02:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28422 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933516Ab0BESCm (ORCPT ); Fri, 5 Feb 2010 13:02:42 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o15I2ZEB018387 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 5 Feb 2010 13:02:35 -0500 Received: from [10.36.5.218] (vpn1-5-218.ams2.redhat.com [10.36.5.218]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o15I2XAi015424; Fri, 5 Feb 2010 13:02:34 -0500 Subject: [PATCH] [hid-sony] Fix typo in error message From: Bastien Nocera To: Dmitry Torokhov , linux-input , Jiri Kosina Date: Fri, 05 Feb 2010 18:02:32 +0000 Message-ID: <1265392952.2383.314.camel@localhost.localdomain> Mime-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 05 Feb 2010 18:02:43 +0000 (UTC) diff --git a/drivers/hid/hid-sony.c b/drivers/hid/hid-sony.c index 4e84502..96d723e 100644 --- a/drivers/hid/hid-sony.c +++ b/drivers/hid/hid-sony.c @@ -81,7 +81,7 @@ static int sony_probe(struct hid_device *hdev, const struct hid_device_id *id) sc = kzalloc(sizeof(*sc), GFP_KERNEL); if (sc == NULL) { - dev_err(&hdev->dev, "can't alloc apple descriptor\n"); + dev_err(&hdev->dev, "can't alloc sony descriptor\n"); return -ENOMEM; }