x86: Rename quark_init() to ia32_pci_init()

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

Change-Id: I1b6f3416db146af4fdbadf70d0ab153741c781d5
Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
Peter Mitsis 2015-08-06 11:23:41 -04:00 committed by Anas Nashif
commit 3ecf65e5ef

View file

@ -105,7 +105,7 @@ static void consoleInit(void)
* @return 0
*/
static int quark_init(struct device *arg)
static int ia32_pci_init(struct device *arg)
{
ARG_UNUSED(arg);
_loapic_init();
@ -134,5 +134,5 @@ static int quark_init(struct device *arg)
return 0;
}
DECLARE_DEVICE_INIT_CONFIG(quark_0, "", quark_init, NULL);
pure_early_init(quark_0, NULL);
DECLARE_DEVICE_INIT_CONFIG(ia32_pci_0, "", ia32_pci_init, NULL);
pure_early_init(ia32_pci_0, NULL);