From b91ed67902858ed2173e80c6048ea8005172dd4a Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 29 Nov 2013 14:30:43 -0600 Subject: [PATCH] Make naming consistent for USB host initialiation functions --- arch/arm/src/lpc17xx/lpc17_usbhost.c | 4 ++-- arch/arm/src/lpc17xx/lpc17_usbhost.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/src/lpc17xx/lpc17_usbhost.c b/arch/arm/src/lpc17xx/lpc17_usbhost.c index fc4f4e92c7..5980a8d2a5 100644 --- a/arch/arm/src/lpc17xx/lpc17_usbhost.c +++ b/arch/arm/src/lpc17xx/lpc17_usbhost.c @@ -2502,7 +2502,7 @@ static inline void lpc17_ep0init(struct lpc17_usbhost_s *priv) *******************************************************************************/ /******************************************************************************* - * Name: usbhost_initialize + * Name: lpc17_usbhost_initialize * * Description: * Initialize USB host device controller hardware. @@ -2526,7 +2526,7 @@ static inline void lpc17_ep0init(struct lpc17_usbhost_s *priv) * *******************************************************************************/ -FAR struct usbhost_connection_s *usbhost_initialize(int controller) +FAR struct usbhost_connection_s *lpc17_usbhost_initialize(int controller) { struct lpc17_usbhost_s *priv = &g_usbhost; uint32_t regval; diff --git a/arch/arm/src/lpc17xx/lpc17_usbhost.h b/arch/arm/src/lpc17xx/lpc17_usbhost.h index f272803728..43f7b66f30 100644 --- a/arch/arm/src/lpc17xx/lpc17_usbhost.h +++ b/arch/arm/src/lpc17xx/lpc17_usbhost.h @@ -70,7 +70,7 @@ extern "C" #endif /******************************************************************************* - * Name: usbhost_initialize + * Name: lpc17_usbhost_initialize * * Description: * Initialize USB host device controller hardware. @@ -96,7 +96,7 @@ extern "C" #ifdef CONFIG_USBHOST struct usbhost_connection_s; -FAR struct usbhost_connection_s *usbhost_initialize(int controller); +FAR struct usbhost_connection_s *lpc17_usbhost_initialize(int controller); #endif #undef EXTERN