diff options
author | Lucas Stach <dev@lynxeye.de> | 2012-08-19 18:22:07 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2012-09-01 16:21:53 +0200 |
commit | 749f8180c2b516abefdda3f5833d39f49b60f84d (patch) | |
tree | 4cda1b6fe9a6d28252fc81f8e621afb63a3aa688 | |
parent | a6a78be02542dbdcd530c62281dd6bfe79074a0b (diff) | |
download | u-boot-imx-749f8180c2b516abefdda3f5833d39f49b60f84d.zip u-boot-imx-749f8180c2b516abefdda3f5833d39f49b60f84d.tar.gz u-boot-imx-749f8180c2b516abefdda3f5833d39f49b60f84d.tar.bz2 |
usb: fix ulpi_set_vbus prototype
Match the name of the header prototype with the actual
implementation.
Signed-off-by: Lucas Stach <dev@lynxeye.de>
-rw-r--r-- | include/usb/ulpi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb/ulpi.h b/include/usb/ulpi.h index 4a23fd2..9a75c24 100644 --- a/include/usb/ulpi.h +++ b/include/usb/ulpi.h @@ -61,7 +61,7 @@ int ulpi_select_transceiver(struct ulpi_viewport *ulpi_vp, unsigned speed); * * returns 0 on success, ULPI_ERROR on failure. */ -int ulpi_enable_vbus(struct ulpi_viewport *ulpi_vp, +int ulpi_set_vbus(struct ulpi_viewport *ulpi_vp, int on, int ext_power, int ext_ind); /* |