blob: 185157816bff1a466ead081cf66611d67dd7ab98 [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(struct device *arg)
{
ARG_UNUSED(arg);
SystemInit();
return 0;
}
SYS_INIT(ti_msp432p4xx_init, PRE_KERNEL_1, 0);