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