summaryrefslogtreecommitdiffstats
path: root/include/linux/ulpi
diff options
context:
space:
mode:
authorTal Shorer2016-08-16 18:04:47 +0200
committerFelipe Balbi2016-09-06 09:47:23 +0200
commit6691402313ddda232e6a401af8841b5fe676a62f (patch)
treecf8876b7284942a31323846ace977b79f0ab0f26 /include/linux/ulpi
parentusb: ulpi: move setting of ulpi->dev parent up in ulpi_register() (diff)
downloadkernel-qcow2-linux-6691402313ddda232e6a401af8841b5fe676a62f.tar.gz
kernel-qcow2-linux-6691402313ddda232e6a401af8841b5fe676a62f.tar.xz
kernel-qcow2-linux-6691402313ddda232e6a401af8841b5fe676a62f.zip
usb: ulpi: add new api functions, {read|write}_dev()
Add these two new api callbacks to struct ulpi_ops. These are different than read, write in that they pass the parent device directly instead of via the ops argument. They are intended to replace the old api functions. If the new api callbacks are missing, revert to calling the old ones as before. 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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ulpi/interface.h b/include/linux/ulpi/interface.h
index 4de8ab491038..d8189d08eddb 100644
--- a/include/linux/ulpi/interface.h
+++ b/include/linux/ulpi/interface.h
@@ -15,6 +15,8 @@ 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);
};
struct ulpi *ulpi_register_interface(struct device *, struct ulpi_ops *);