x86: Rename pc_init() to ia32_init()

The new name corresponds to the platform (ia32), whereas the old name referred
to the old platform/bsp name.

Change-Id: Ia8fe5d2b35bceb7e04dd8ac9c41b9de7947ed1f9
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2015-08-06 11:17:09 -04:00 committed by Anas Nashif
commit 0ea6e60035

View file

@ -152,7 +152,7 @@ static void bluetooth_init(void)
*
* @return 0
*/
static int pc_init(struct device *arg)
static int ia32_init(struct device *arg)
{
ARG_UNUSED(arg);
@ -165,5 +165,5 @@ static int pc_init(struct device *arg)
return 0;
}
DECLARE_DEVICE_INIT_CONFIG(pc_0, "", pc_init, NULL);
pure_early_init(pc_0, NULL);
DECLARE_DEVICE_INIT_CONFIG(ia32_0, "", ia32_init, NULL);
pure_early_init(ia32_0, NULL);