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:
4d42195
)
staging: usbip: vhci_hcd: remove check for dma
author
navin patidar
<navinp@cdac.in>
Tue, 10 Sep 2013 05:06:46 +0000
(10:36 +0530)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 25 Sep 2013 23:30:46 +0000
(16:30 -0700)
vhci_hcd is a virtual usb host controller, so no need to
check for dma.
Signed-off-by: navin patidar <navinp@cdac.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/usbip/vhci_hcd.c
patch
|
blob
|
history
diff --git
a/drivers/staging/usbip/vhci_hcd.c
b/drivers/staging/usbip/vhci_hcd.c
index b3c9217c38e9cbf57950d0df7f857fbb25e0f96e..e810ad53e2acfe519a448eedc84830fcc547afae 100644
(file)
--- a/
drivers/staging/usbip/vhci_hcd.c
+++ b/
drivers/staging/usbip/vhci_hcd.c
@@
-999,12
+999,6
@@
static int vhci_hcd_probe(struct platform_device *pdev)
usbip_dbg_vhci_hc("name %s id %d\n", pdev->name, pdev->id);
- /* will be removed */
- if (pdev->dev.dma_mask) {
- dev_info(&pdev->dev, "vhci_hcd DMA not supported\n");
- return -EINVAL;
- }
-
/*
* Allocate and initialize hcd.
* Our private data is also allocated automatically.