Commit 98e2380e authored by Martin Hicks's avatar Martin Hicks Committed by Linus Torvalds

[PATCH] PCI Hotplug: Trivial warning fix

This just gets rid of a stupid compile warning.
parent 73b6196b
......@@ -245,7 +245,9 @@ decode_acpi_resource (struct acpi_resource *resource, void *context)
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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment