diff options
author | Sriram Dash <sriram.dash@nxp.com> | 2016-09-16 11:42:15 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2016-09-27 21:30:27 (GMT) |
commit | a5c289b9bca3805fa35e42f389dc8225c6b916be (patch) | |
tree | 5c992683a49707d6b4ea251bb436f07867e4e066 /drivers | |
parent | f7c81e287954fd9048d4419006e8314b7b7c46d0 (diff) | |
download | u-boot-a5c289b9bca3805fa35e42f389dc8225c6b916be.tar.xz |
usb: fsl: Rename fdt_fixup_dr_usb
The function fdt_fixup_dr_usb is specific to fsl/nxp. So,
make the function name explicit and rename fdt_fixup_dr_usb
into fsl_fdt_fixup_dr_usb.
Signed-off-by: Sriram Dash <sriram.dash@nxp.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/common/fsl-dt-fixup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/common/fsl-dt-fixup.c b/drivers/usb/common/fsl-dt-fixup.c index 9c48852..906f9df 100644 --- a/drivers/usb/common/fsl-dt-fixup.c +++ b/drivers/usb/common/fsl-dt-fixup.c @@ -131,7 +131,7 @@ static int fdt_fixup_erratum(int *usb_erratum_off, void *blob, return 0; } -void fdt_fixup_dr_usb(void *blob, bd_t *bd) +void fsl_fdt_fixup_dr_usb(void *blob, bd_t *bd) { static const char * const modes[] = { "host", "peripheral", "otg" }; static const char * const phys[] = { "ulpi", "utmi", "utmi_dual" }; |