From patchwork Fri Feb 19 06:42:40 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Len Brown X-Patchwork-Id: 80551 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 o1J6gjVX026659 for ; Fri, 19 Feb 2010 06:42:45 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753584Ab0BSGmo (ORCPT ); Fri, 19 Feb 2010 01:42:44 -0500 Received: from vms173011pub.verizon.net ([206.46.173.11]:46452 "EHLO vms173011pub.verizon.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753457Ab0BSGmo (ORCPT ); Fri, 19 Feb 2010 01:42:44 -0500 Received: from localhost.localdomain ([unknown] [74.104.151.18]) by vms173011.mailsrvcs.net (Sun Java(tm) System Messaging Server 7u2-7.02 32bit (built Apr 16 2009)) with ESMTPA id <0KY200ISITB5IL70@vms173011.mailsrvcs.net> for linux-acpi@vger.kernel.org; Fri, 19 Feb 2010 00:42:41 -0600 (CST) Received: from localhost.localdomain (d975xbx2 [127.0.0.1]) by localhost.localdomain (8.14.2/8.14.2) with ESMTP id o1J6geMD025193; Fri, 19 Feb 2010 01:42:40 -0500 Received: from localhost (lenb@localhost) by localhost.localdomain (8.14.2/8.14.2/Submit) with ESMTP id o1J6getT025188; Fri, 19 Feb 2010 01:42:40 -0500 X-Authentication-warning: localhost.localdomain: lenb owned process doing -bs Date: Fri, 19 Feb 2010 01:42:40 -0500 (EST) From: Len Brown X-X-Sender: lenb@localhost.localdomain To: devel@acpica.org Cc: linux-acpi@vger.kernel.org, Naga Chumbalkar Subject: [PATCH] ACPICA: exfield: minor format change in error message (fwd) Message-id: User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-version: 1.0 Content-type: TEXT/PLAIN; charset=US-ASCII Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@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, 19 Feb 2010 06:42:45 +0000 (UTC) diff --git a/drivers/acpi/acpica/exfield.c b/drivers/acpi/acpica/exfield.c index 1588a2d..be2b03a 100644 --- a/drivers/acpi/acpica/exfield.c +++ b/drivers/acpi/acpica/exfield.c @@ -281,7 +281,8 @@ acpi_ex_write_data_to_field(union acpi_operand_object *source_desc, if (source_desc->buffer.length < length) { ACPI_ERROR((AE_INFO, - "SMBus or IPMI write requires Buffer of length %X, found length %X", + "SMBus or IPMI write requires Buffer of " + "length %d, found length %d", length, source_desc->buffer.length)); return_ACPI_STATUS(AE_AML_BUFFER_LIMIT);