diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 11:59:37 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-05-10 14:20:42 +0200 | 
| commit | dbb6be6d5e974c42bbecd183effaa0df69e1dd8b (patch) | |
| tree | 5735cb47e70853d057a9881dd0ce44b83e88fa63 /drivers/pci/ioapic.c | |
| parent | 6a867a395558a7f882d041783e4cdea6744ca2bf (diff) | |
| parent | b57f95a38233a2e73b679bea4a5453a1cc2a1cc9 (diff) | |
| download | olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.tar.xz olio-linux-3.10-dbb6be6d5e974c42bbecd183effaa0df69e1dd8b.zip  | |
Merge branch 'linus' into timers/core
Reason: Further posix_cpu_timer patches depend on mainline changes
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/pci/ioapic.c')
| -rw-r--r-- | drivers/pci/ioapic.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/pci/ioapic.c b/drivers/pci/ioapic.c index 3e0d7b5dd1b..203508b227b 100644 --- a/drivers/pci/ioapic.c +++ b/drivers/pci/ioapic.c @@ -18,6 +18,7 @@  #include <linux/pci.h>  #include <linux/acpi.h> +#include <linux/slab.h>  #include <acpi/acpi_bus.h>  struct ioapic { @@ -31,9 +32,9 @@ static int ioapic_probe(struct pci_dev *dev, const struct pci_device_id *ent)  	acpi_status status;  	unsigned long long gsb;  	struct ioapic *ioapic; -	u64 addr;  	int ret;  	char *type; +	struct resource *res;  	handle = DEVICE_ACPI_HANDLE(&dev->dev);  	if (!handle) @@ -69,13 +70,12 @@ static int ioapic_probe(struct pci_dev *dev, const struct pci_device_id *ent)  	if (pci_request_region(dev, 0, type))  		goto exit_disable; -	addr = pci_resource_start(dev, 0); -	if (acpi_register_ioapic(ioapic->handle, addr, ioapic->gsi_base)) +	res = &dev->resource[0]; +	if (acpi_register_ioapic(ioapic->handle, res->start, ioapic->gsi_base))  		goto exit_release;  	pci_set_drvdata(dev, ioapic); -	dev_info(&dev->dev, "%s at %#llx, GSI %u\n", type, addr, -		 ioapic->gsi_base); +	dev_info(&dev->dev, "%s at %pR, GSI %u\n", type, res, ioapic->gsi_base);  	return 0;  exit_release:  |