diff options
author | Michael Buesch <mb@bu3sch.de> | 2008-03-28 12:34:55 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-04-08 23:05:56 +0400 |
commit | 9788ba7500c3a6268ceb63296a0f37f34d450beb (patch) | |
tree | 1b4a4a960acafa93e081502afb5207cf66506bae /drivers/ssb/main.c | |
parent | 247367016305637fb981db020679520e354c80c4 (diff) | |
download | linux-9788ba7500c3a6268ceb63296a0f37f34d450beb.tar.xz |
ssb-pcmcia: IRQ and DMA related fixes
Here come some IRQ and DMA related fixes for the ssb PCMCIA-host code.
Not much to say, actually. I think the patch explains itself.
Signed-off-by: Michael Buesch <mb@bu3sch.de>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/ssb/main.c')
-rw-r--r-- | drivers/ssb/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index e12371916444..2fcfd73b3b6e 100644 --- a/drivers/ssb/main.c +++ b/drivers/ssb/main.c @@ -1064,9 +1064,9 @@ u32 ssb_dma_translation(struct ssb_device *dev) { switch (dev->bus->bustype) { case SSB_BUSTYPE_SSB: + case SSB_BUSTYPE_PCMCIA: return 0; case SSB_BUSTYPE_PCI: - case SSB_BUSTYPE_PCMCIA: return SSB_PCI_DMA; } return 0; |