blob: 471179779bad9a217576df70a1eec2e635e2b3db [file] [log] [blame]
/*
* 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(const struct device *arg)
{
ARG_UNUSED(arg);
SystemInit();
return 0;
}
SYS_INIT(ti_msp432p4xx_init, PRE_KERNEL_1, 0);