diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-30 10:58:01 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-03-30 10:58:01 -0300 |
commit | 5e29e28718a80e08f3c6c920d162964c0d377f93 (patch) | |
tree | 16f8deba6db14f07fb07d35b3e978c42f21d7b29 /linux/drivers/media/video/cx88/cx88-alsa.c | |
parent | 475afdb18501a3f8373e47ec0d0b09ed655c0eea (diff) | |
download | mediapointer-dvb-s2-5e29e28718a80e08f3c6c920d162964c0d377f93.tar.gz mediapointer-dvb-s2-5e29e28718a80e08f3c6c920d162964c0d377f93.tar.bz2 |
Replace DMA magic mask for its aliases
From: Mauro Carvalho Chehab <mchehab@infradead.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-alsa.c')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-alsa.c b/linux/drivers/media/video/cx88/cx88-alsa.c index da5dc6817..1cc8c372f 100644 --- a/linux/drivers/media/video/cx88/cx88-alsa.c +++ b/linux/drivers/media/video/cx88/cx88-alsa.c @@ -790,7 +790,7 @@ static int __devinit snd_cx88_create(struct snd_card *card, return err; } - if (!pci_dma_supported(pci,0xffffffff)) { + if (!pci_dma_supported(pci,DMA_32BIT_MASK)) { dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name); err = -EIO; cx88_core_put(core,pci); |