Skip to content

Commit

Permalink
MIPS: SNI: pcit: Fix build error with CONFIG_PCI=n disabled.
Browse files Browse the repository at this point in the history
  CC      arch/mips/sni/pcit.o
arch/mips/sni/pcit.c:150:30: warning: ‘sni_pcit_controller’ defined but not used [-Wunused-variable]

Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
ralfbaechle committed Jun 25, 2013
1 parent 5bd8076 commit 6a72015
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions arch/mips/sni/pcit.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,6 @@ static struct resource pcit_io_resources[] = {
}
};

static struct resource sni_mem_resource = {
.start = 0x18000000UL,
.end = 0x1fbfffffUL,
.name = "PCIT PCI MEM",
.flags = IORESOURCE_MEM
};

static void __init sni_pcit_resource_init(void)
{
int i;
Expand All @@ -147,6 +140,14 @@ static void __init sni_pcit_resource_init(void)

extern struct pci_ops sni_pcit_ops;

#ifdef CONFIG_PCI
static struct resource sni_mem_resource = {
.start = 0x18000000UL,
.end = 0x1fbfffffUL,
.name = "PCIT PCI MEM",
.flags = IORESOURCE_MEM
};

static struct pci_controller sni_pcit_controller = {
.pci_ops = &sni_pcit_ops,
.mem_resource = &sni_mem_resource,
Expand All @@ -155,6 +156,7 @@ static struct pci_controller sni_pcit_controller = {
.io_offset = 0x00000000UL,
.io_map_base = SNI_PORT_BASE
};
#endif /* CONFIG_PCI */

static void enable_pcit_irq(struct irq_data *d)
{
Expand Down

0 comments on commit 6a72015

Please sign in to comment.