projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
251c591
)
cx23885: use pci_set_dma_mask insted of pci_dma_supported
author
Christoph Hellwig
<
[email protected]
>
Tue, 10 Nov 2015 22:45:33 +0000
(14:45 -0800)
committer
Linus Torvalds
<
[email protected]
>
Wed, 11 Nov 2015 00:32:11 +0000
(16:32 -0800)
This ensures the dma mask that is supported by the driver is recorded
in the device structure.
Signed-off-by: Christoph Hellwig <
[email protected]
>
Cc: Mauro Carvalho Chehab <
[email protected]
>
Cc: Hans Verkuil <
[email protected]
>
Cc: Pawel Osciak <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/media/pci/cx23885/cx23885-core.c
patch
|
blob
|
history
diff --git
a/drivers/media/pci/cx23885/cx23885-core.c
b/drivers/media/pci/cx23885/cx23885-core.c
index bc1c9602f4352a33ddb1797e616bfe212f89d5ad..35759a91d47dce2eaede0d0491910aeb0180cab7 100644
(file)
--- a/
drivers/media/pci/cx23885/cx23885-core.c
+++ b/
drivers/media/pci/cx23885/cx23885-core.c
@@
-1992,7
+1992,7
@@
static int cx23885_initdev(struct pci_dev *pci_dev,
(unsigned long long)pci_resource_start(pci_dev, 0));
pci_set_master(pci_dev);
- if (!pci_
dma_supported
(pci_dev, 0xffffffff)) {
+ if (!pci_
set_dma_mask
(pci_dev, 0xffffffff)) {
printk("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name);
err = -EIO;
goto fail_context;