22 lines
308 B
C
22 lines
308 B
C
|
/*
|
||
|
* Copyright (c) 2017, Linaro Ltd
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#include <kernel.h>
|
||
|
#include <device.h>
|
||
|
#include <init.h>
|
||
|
#include <soc.h>
|
||
|
|
||
|
static int ti_msp432p4xx_init(struct device *arg)
|
||
|
{
|
||
|
ARG_UNUSED(arg);
|
||
|
|
||
|
SystemInit();
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
SYS_INIT(ti_msp432p4xx_init, PRE_KERNEL_1, 0);
|