Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6f74849 authored by Tal Shorer's avatar Tal Shorer Committed by Felipe Balbi
Browse files

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: default avatarHeikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: default avatarTal Shorer <tal.shorer@gmail.com>
Signed-off-by: default avatarFelipe Balbi <felipe.balbi@linux.intel.com>
parent 5c42f387
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -21,13 +21,13 @@

int ulpi_read(struct ulpi *ulpi, u8 addr)
{
	return ulpi->ops->read_dev(ulpi->dev.parent, addr);
	return ulpi->ops->read(ulpi->dev.parent, addr);
}
EXPORT_SYMBOL_GPL(ulpi_read);

int ulpi_write(struct ulpi *ulpi, u8 addr, u8 val)
{
	return ulpi->ops->write_dev(ulpi->dev.parent, addr, val);
	return ulpi->ops->write(ulpi->dev.parent, addr, val);
}
EXPORT_SYMBOL_GPL(ulpi_write);

+2 −2
Original line number Diff line number Diff line
@@ -66,8 +66,8 @@ static int dwc3_ulpi_write(struct device *dev, u8 addr, u8 val)
}

static struct ulpi_ops dwc3_ulpi_ops = {
	.read_dev = dwc3_ulpi_read,
	.write_dev = dwc3_ulpi_write,
	.read = dwc3_ulpi_read,
	.write = dwc3_ulpi_write,
};

int dwc3_ulpi_init(struct dwc3 *dwc)
+2 −2
Original line number Diff line number Diff line
@@ -13,8 +13,8 @@ struct ulpi;
 */
struct ulpi_ops {
	struct device *dev;
	int (*read_dev)(struct device *dev, u8 addr);
	int (*write_dev)(struct device *dev, u8 addr, u8 val);
	int (*read)(struct device *dev, u8 addr);
	int (*write)(struct device *dev, u8 addr, u8 val);
};

struct ulpi *ulpi_register_interface(struct device *, struct ulpi_ops *);