blob: 73d1a8dc13e6cfc3772a3b0eb34d3752af75dabb [file] [log] [blame]
/*
* Copyright (c) 2017, Linaro Ltd
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/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);