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:
parent
0ea6e60035
commit
3ecf65e5ef
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue