| .. | .. |
|---|
| 24 | 24 | #include <linux/slab.h> |
|---|
| 25 | 25 | #include <linux/usb/ulpi.h> |
|---|
| 26 | 26 | #include <linux/pm_runtime.h> |
|---|
| 27 | | -#include <linux/gpio.h> |
|---|
| 28 | 27 | #include <linux/clk.h> |
|---|
| 29 | 28 | #include <linux/usb.h> |
|---|
| 30 | 29 | #include <linux/usb/hcd.h> |
|---|
| .. | .. |
|---|
| 78 | 77 | |
|---|
| 79 | 78 | /** |
|---|
| 80 | 79 | * ehci_hcd_omap_probe - initialize TI-based HCDs |
|---|
| 80 | + * @pdev: Pointer to this platform device's information |
|---|
| 81 | 81 | * |
|---|
| 82 | 82 | * Allocates basic resources for this USB host controller, and |
|---|
| 83 | 83 | * then invokes the start() method for the HCD associated with it |
|---|
| .. | .. |
|---|
| 115 | 115 | } |
|---|
| 116 | 116 | |
|---|
| 117 | 117 | irq = platform_get_irq(pdev, 0); |
|---|
| 118 | | - if (irq < 0) { |
|---|
| 119 | | - dev_err(dev, "EHCI irq failed: %d\n", irq); |
|---|
| 118 | + if (irq < 0) |
|---|
| 120 | 119 | return irq; |
|---|
| 121 | | - } |
|---|
| 122 | 120 | |
|---|
| 123 | 121 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
|---|
| 124 | 122 | regs = devm_ioremap_resource(dev, res); |
|---|