diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2011-05-18 11:40:22 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-06-01 15:10:58 -0400 |
commit | 1bdcd095e39a789135f8638a2ff76f74e3071d46 (patch) | |
tree | 8537cc55020c878f8f034689849e31856be135aa /drivers/bcma/main.c | |
parent | 24ca39d67968c42d377abc122f6dca635ebcdb79 (diff) | |
download | linux-1bdcd095e39a789135f8638a2ff76f74e3071d46.tar.bz2 |
bcma: add IRQ number and pointer to DMA dev
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/bcma/main.c')
-rw-r--r-- | drivers/bcma/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bcma/main.c b/drivers/bcma/main.c index be52344ed19d..a2f6b1879273 100644 --- a/drivers/bcma/main.c +++ b/drivers/bcma/main.c @@ -89,6 +89,8 @@ static int bcma_register_cores(struct bcma_bus *bus) switch (bus->hosttype) { case BCMA_HOSTTYPE_PCI: core->dev.parent = &bus->host_pci->dev; + core->dma_dev = &bus->host_pci->dev; + core->irq = bus->host_pci->irq; break; case BCMA_HOSTTYPE_NONE: case BCMA_HOSTTYPE_SDIO: |