1 /* 2 * Copyright (c) 2019 Brett Witherspoon 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #include <zephyr/init.h> 8 9 #include <driverlib/setup.h> 10 soc_early_init_hook(void)11void soc_early_init_hook(void) 12 { 13 14 /* Performs necessary trim of the device. */ 15 SetupTrimDevice(); 16 } 17