9
0
Fork 0

Rename function ulpi_init to ulpi_detect

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2012-03-24 18:00:38 +04:00 committed by Sascha Hauer
parent bafda33463
commit a2623f1712
2 changed files with 3 additions and 3 deletions

View File

@ -134,7 +134,7 @@ static struct ulpi_info ulpi_ids[] = {
ULPI_INFO(ULPI_ID(0x0424, 0x0006), "SMSC USB331x"),
};
int ulpi_init(void __iomem *view)
int ulpi_probe(void __iomem *view)
{
int i, vid, pid, ret;
uint32_t ulpi_id = 0;
@ -160,7 +160,7 @@ int ulpi_init(void __iomem *view)
return -1;
}
EXPORT_SYMBOL(ulpi_init);
EXPORT_SYMBOL(ulpi_probe);
int ulpi_set_vbus(void __iomem *view, int on)
{

View File

@ -4,7 +4,7 @@
int ulpi_set(u8 bits, int reg, void __iomem *view);
int ulpi_clear(u8 bits, int reg, void __iomem *view);
int ulpi_read(int reg, void __iomem *view);
int ulpi_init(void __iomem *view);
int ulpi_probe(void __iomem *view);
int ulpi_set_vbus(void __iomem *view, int on);
/* ULPI register addresses */