]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PARISC] Clean up compiler warning in pci.c
authorHelge Deller <deller@parisc-linux.org>
Sun, 15 Jan 2006 18:52:22 +0000 (11:52 -0700)
committerKyle McMartin <kyle@duet.int.mcmartin.ca>
Mon, 23 Jan 2006 01:26:43 +0000 (20:26 -0500)
Avoid compiler warning for unused variables on 32bit kernels by
conditionalizing the local variables on CONFIG_64BIT. PCI_HOST_ADDR()
only uses the hba argument on 64bit compiles.

Signed-off-by: Helge Deller <deller@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
arch/parisc/kernel/pci.c

index d66d7cb1c0d9725804131932177db4fd169b6c30..79c7db2705fd4b7b475a87af50e09cf57cc62a4a 100644 (file)
@@ -258,8 +258,10 @@ void __devinit pcibios_resource_to_bus(struct pci_dev *dev,
 void pcibios_bus_to_resource(struct pci_dev *dev, struct resource *res,
                              struct pci_bus_region *region)
 {
+#ifdef CONFIG_64BIT
        struct pci_bus *bus = dev->bus;
        struct pci_hba_data *hba = HBA_DATA(bus->bridge->platform_data);
+#endif
 
        if (res->flags & IORESOURCE_MEM) {
                res->start = PCI_HOST_ADDR(hba, region->start);