Skip to content

Commit

Permalink
parisc/PCI: Set type for LBA bus_num resource
Browse files Browse the repository at this point in the history
The non-PAT resource probing code failed to set the type of the LBA bus_num
resource (30aa80d "parisc/PCI: register busn_res for root buses" did
the corresponding thing for the PAT case).

This causes incorrect resource assignments and a non-working stifb
framebuffer on most parisc machines.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Helge Deller <deller@gmx.de>
  • Loading branch information
bjorn-helgaas authored and hdeller committed Jun 1, 2013
1 parent 2b6bac9 commit b47d493
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions drivers/parisc/lba_pci.c
Expand Up @@ -1096,6 +1096,7 @@ lba_legacy_resources(struct parisc_device *pa_dev, struct lba_device *lba_dev)
r->name = "LBA PCI Busses";
r->start = lba_num & 0xff;
r->end = (lba_num>>8) & 0xff;
r->flags = IORESOURCE_BUS;

/* Set up local PCI Bus resources - we don't need them for
** Legacy boxes but it's nice to see in /proc/iomem.
Expand Down

0 comments on commit b47d493

Please sign in to comment.