diff options
author | Tal Shorer <tal.shorer@gmail.com> | 2016-08-16 12:04:50 -0400 |
---|---|---|
committer | Felipe Balbi <felipe.balbi@linux.intel.com> | 2016-09-06 03:47:24 -0400 |
commit | e6f74849784ccf275226d5d3ddfb96c71fa90383 (patch) | |
tree | a7f2ba33065d9479ace41b6efb3af54f875ea557 /drivers/usb/common | |
parent | 5c42f38795645834a7c23998bd74d35a37bff078 (diff) |
usb: ulpi: rename operations {read|write}_dev to simply {read|write}
With the removal of the old {read|write} operations, we can now safely
rename the new api operations {read|write}_dev to use the shorter and
clearer names {read|write}, respectively.
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/common/ulpi.c b/drivers/usb/common/ulpi.c index 43142c3d94d7..fdaed7c26c12 100644 --- a/drivers/usb/common/ulpi.c +++ b/drivers/usb/common/ulpi.c | |||
@@ -21,13 +21,13 @@ | |||
21 | 21 | ||
22 | int ulpi_read(struct ulpi *ulpi, u8 addr) | 22 | int ulpi_read(struct ulpi *ulpi, u8 addr) |
23 | { | 23 | { |
24 | return ulpi->ops->read_dev(ulpi->dev.parent, addr); | 24 | return ulpi->ops->read(ulpi->dev.parent, addr); |
25 | } | 25 | } |
26 | EXPORT_SYMBOL_GPL(ulpi_read); | 26 | EXPORT_SYMBOL_GPL(ulpi_read); |
27 | 27 | ||
28 | int ulpi_write(struct ulpi *ulpi, u8 addr, u8 val) | 28 | int ulpi_write(struct ulpi *ulpi, u8 addr, u8 val) |
29 | { | 29 | { |
30 | return ulpi->ops->write_dev(ulpi->dev.parent, addr, val); | 30 | return ulpi->ops->write(ulpi->dev.parent, addr, val); |
31 | } | 31 | } |
32 | EXPORT_SYMBOL_GPL(ulpi_write); | 32 | EXPORT_SYMBOL_GPL(ulpi_write); |
33 | 33 | ||