diff options
author | Tal Shorer <tal.shorer@gmail.com> | 2016-08-16 19:04:51 +0300 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-09-06 10:47:25 +0300 |
commit | 042b0f31b2a87799a9c832f71474c5be3517e139 (patch) | |
tree | b2fcd3c4e33579054cea238bbfaa8e5886262dc0 /drivers/usb/common | |
parent | e6f74849784ccf275226d5d3ddfb96c71fa90383 (diff) | |
download | linux-042b0f31b2a87799a9c832f71474c5be3517e139.tar.bz2 |
usb: ulpi: remove "dev" field from struct ulpi_ops
Operations now use ulpi->dev.parent directly instead of via the
ulpi_ops struct, making this field unused. Remove it.
Acked-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Tal Shorer <tal.shorer@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/common')
-rw-r--r-- | drivers/usb/common/ulpi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c index fdaed7c26c12..0439e9638813 100644 --- a/drivers/usb/common/ulpi.c +++ b/drivers/usb/common/ulpi.c @@ -212,7 +212,6 @@ struct ulpi *ulpi_register_interface(struct device *dev, struct ulpi_ops *ops) return ERR_PTR(-ENOMEM); ulpi->ops = ops; - ops->dev = dev; ret = ulpi_register(dev, ulpi); if (ret) { |