diff options
author | Tal Shorer | 2016-08-16 19:04:49 +0300 |
---|---|---|
committer | Felipe Balbi | 2016-09-06 10:47:24 +0300 |
commit | 5c42f38795645834a7c23998bd74d35a37bff078 (patch) | |
tree | a0dcc5625fa45f1e2048893c1865961fd45438a9 /include/linux/ulpi | |
parent | b7cf1dc3414de59f178734466f6cfff5171a8ffb (diff) |
usb: ulpi: remove calls to old api callbacks
Now that all users use the new api callbacks, remove the old api
callbacks and force new interface drivers to use the new api.
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 'include/linux/ulpi')
-rw-r--r-- | include/linux/ulpi/interface.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/ulpi/interface.h b/include/linux/ulpi/interface.h index d8189d08eddb..71f3c99771aa 100644 --- a/include/linux/ulpi/interface.h +++ b/include/linux/ulpi/interface.h @@ -13,8 +13,6 @@ struct ulpi; */ struct ulpi_ops { struct device *dev; - int (*read)(struct ulpi_ops *ops, u8 addr); - int (*write)(struct ulpi_ops *ops, u8 addr, u8 val); int (*read_dev)(struct device *dev, u8 addr); int (*write_dev)(struct device *dev, u8 addr, u8 val); }; |