From mboxrd@z Thu Jan 1 00:00:00 1970 From: Martin Hicks Date: Sat, 08 Nov 2003 17:07:32 +0000 Subject: [PATCH 2.6] Trivial warning fix Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org hello, This just gets rid of a stupid compile warning. Please apply. The patch is against the latest bk tree. thanks, mh -- Martin Hicks Wild Open Source Inc. mort@wildopensource.com 613-266-2296 # This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1354 -> 1.1355 # drivers/pci/hotplug/acpiphp_glue.c 1.17 -> 1.18 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/11/08 mort@green.i.bork.org 1.1355 # Gets rid of a compile warning. Trivial. # -------------------------------------------- # diff -Nru a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c --- a/drivers/pci/hotplug/acpiphp_glue.c Sat Nov 8 12:06:35 2003 +++ b/drivers/pci/hotplug/acpiphp_glue.c Sat Nov 8 12:06:35 2003 @@ -245,7 +245,9 @@ acpi_resource_to_address64(resource, &address); if (address.producer_consumer = ACPI_PRODUCER && address.address_length > 0) { - dbg("resource type: %d: 0x%llx - 0x%llx\n", address.resource_type, address.min_address_range, address.max_address_range); + dbg("resource type: %d: 0x%llx - 0x%llx\n", address.resource_type, + (unsigned long long)address.min_address_range, + (unsigned long long)address.max_address_range); res = acpiphp_make_resource(address.min_address_range, address.address_length); if (!res) { ------------------------------------------------------- This SF.Net email sponsored by: ApacheCon 2003, 16-19 November in Las Vegas. Learn firsthand the latest developments in Apache, PHP, Perl, XML, Java, MySQL, WebDAV, and more! http://www.apachecon.com/ _______________________________________________ Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net Linux-hotplug-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel