aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-xilinx-of.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-10-01 16:23:01 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-10-01 16:23:01 -0400
commitd9a807461fc8cc0d6ba589ea0730d139122af012 (patch)
tree9d8c7a044659d821748dd40718a22557c04e4299 /drivers/usb/host/ehci-xilinx-of.c
parent3498d13b8090c0b0ef911409fbc503a7c4cca6ef (diff)
parent70c048a238c780c226eb4b115ebaa908cb3b34ec (diff)
Merge tag 'usb-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB changes from Greg Kroah-Hartman: "Here is the big USB pull request for 3.7-rc1 There are lots of gadget driver changes (including copying a bunch of files into the drivers/staging/ccg/ directory so that the other gadget drivers can be fixed up properly without breaking that driver), and we remove the old obsolete ub.c driver from the tree. There are also the usual XHCI set of updates, and other various driver changes and updates. We also are trying hard to remove the old dbg() macro, but the final bits of that removal will be coming in through the networking tree before we can delete it for good. All of these patches have been in the linux-next tree. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>" Fix up several annoying - but fairly mindless - conflicts due to the termios structure having moved into the tty device, and often clashing with dbg -> dev_dbg conversion. * tag 'usb-3.6' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (339 commits) USB: ezusb: move ezusb.c from drivers/usb/serial to drivers/usb/misc USB: uas: fix gcc warning USB: uas: fix locking USB: Fix race condition when removing host controllers USB: uas: add locking USB: uas: fix abort USB: uas: remove aborted field, replace with status bit. USB: uas: fix task management USB: uas: keep track of command urbs xhci: Intel Panther Point BEI quirk. powerpc/usb: remove checking PHY_CLK_VALID for UTMI PHY USB: ftdi_sio: add TIAO USB Multi-Protocol Adapter (TUMPA) support Revert "usb : Add sysfs files to control port power." USB: serial: remove vizzini driver usb: host: xhci: Fix Null pointer dereferencing with 71c731a for non-x86 systems Increase XHCI suspend timeout to 16ms USB: ohci-at91: fix null pointer in ohci_hcd_at91_overcurrent_irq USB: sierra_ms: don't keep unused variable fsl/usb: Add support for USB controller version 2.4 USB: qcaux: add Pantech vendor class match ...
Diffstat (limited to 'drivers/usb/host/ehci-xilinx-of.c')
-rw-r--r--drivers/usb/host/ehci-xilinx-of.c20
1 files changed, 3 insertions, 17 deletions
diff --git a/drivers/usb/host/ehci-xilinx-of.c b/drivers/usb/host/ehci-xilinx-of.c
index 39f24fa37ebe..6a3f921a5d76 100644
--- a/drivers/usb/host/ehci-xilinx-of.c
+++ b/drivers/usb/host/ehci-xilinx-of.c
@@ -152,12 +152,6 @@ static int __devinit ehci_hcd_xilinx_of_probe(struct platform_device *op)
152 hcd->rsrc_start = res.start; 152 hcd->rsrc_start = res.start;
153 hcd->rsrc_len = resource_size(&res); 153 hcd->rsrc_len = resource_size(&res);
154 154
155 if (!request_mem_region(hcd->rsrc_start, hcd->rsrc_len, hcd_name)) {
156 printk(KERN_ERR "%s: request_mem_region failed\n", __FILE__);
157 rv = -EBUSY;
158 goto err_rmr;
159 }
160
161 irq = irq_of_parse_and_map(dn, 0); 155 irq = irq_of_parse_and_map(dn, 0);
162 if (!irq) { 156 if (!irq) {
163 printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__); 157 printk(KERN_ERR "%s: irq_of_parse_and_map failed\n", __FILE__);
@@ -165,11 +159,11 @@ static int __devinit ehci_hcd_xilinx_of_probe(struct platform_device *op)
165 goto err_irq; 159 goto err_irq;
166 } 160 }
167 161
168 hcd->regs = ioremap(hcd->rsrc_start, hcd->rsrc_len); 162 hcd->regs = devm_request_and_ioremap(&op->dev, &res);
169 if (!hcd->regs) { 163 if (!hcd->regs) {
170 printk(KERN_ERR "%s: ioremap failed\n", __FILE__); 164 pr_err("%s: devm_request_and_ioremap failed\n", __FILE__);
171 rv = -ENOMEM; 165 rv = -ENOMEM;
172 goto err_ioremap; 166 goto err_irq;
173 } 167 }
174 168
175 ehci = hcd_to_ehci(hcd); 169 ehci = hcd_to_ehci(hcd);
@@ -200,12 +194,7 @@ static int __devinit ehci_hcd_xilinx_of_probe(struct platform_device *op)
200 if (rv == 0) 194 if (rv == 0)
201 return 0; 195 return 0;
202 196
203 iounmap(hcd->regs);
204
205err_ioremap:
206err_irq: 197err_irq:
207 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
208err_rmr:
209 usb_put_hcd(hcd); 198 usb_put_hcd(hcd);
210 199
211 return rv; 200 return rv;
@@ -227,9 +216,6 @@ static int ehci_hcd_xilinx_of_remove(struct platform_device *op)
227 216
228 usb_remove_hcd(hcd); 217 usb_remove_hcd(hcd);
229 218
230 iounmap(hcd->regs);
231 release_mem_region(hcd->rsrc_start, hcd->rsrc_len);
232
233 usb_put_hcd(hcd); 219 usb_put_hcd(hcd);
234 220
235 return 0; 221 return 0;