1 /* 2 * Copyright (c) 2024 Texas Instruments Incorporated 3 * Copyright (c) 2024 BayLibre, SAS 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #include <driverlib/setup.h> 9 soc_reset_hook(void)10void soc_reset_hook(void) 11 { 12 /* Perform necessary trim of the device. */ 13 SetupTrimDevice(); 14 } 15