From patchwork Wed Feb 17 03:13:27 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Naga Chumbalkar X-Patchwork-Id: 79830 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 o1H3Daps016542 for ; Wed, 17 Feb 2010 03:13:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933935Ab0BQDN3 (ORCPT ); Tue, 16 Feb 2010 22:13:29 -0500 Received: from g5t0007.atlanta.hp.com ([15.192.0.44]:14908 "EHLO g5t0007.atlanta.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933927Ab0BQDN3 (ORCPT ); Tue, 16 Feb 2010 22:13:29 -0500 Received: from g5t0030.atlanta.hp.com (g5t0030.atlanta.hp.com [16.228.8.142]) by g5t0007.atlanta.hp.com (Postfix) with ESMTP id C01C014A5F; Wed, 17 Feb 2010 03:13:27 +0000 (UTC) Received: from localhost.localdomain (unknown [16.84.217.19]) by g5t0030.atlanta.hp.com (Postfix) with ESMTP id 1F631141C1; Wed, 17 Feb 2010 03:13:27 +0000 (UTC) From: Naga Chumbalkar To: len.brown@intel.com Cc: linux-acpi@vger.kernel.org, Naga Chumbalkar Message-Id: <20100217031240.31842.17874.sendpatchset@localhost.localdomain> Subject: [PATCH] ACPICA: exfield: minor format change in error message Date: Wed, 17 Feb 2010 03:13:27 +0000 (UTC) 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]); Wed, 17 Feb 2010 03:13:38 +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);