1 /*
2  * Copyright (c) 2022 Vaishnav Achath
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/init.h>
8 
9 #include <driverlib/setup.h>
10 
ti_cc13x7_cc26x7_init(void)11 static int ti_cc13x7_cc26x7_init(void)
12 {
13 
14 	/* Performs necessary trim of the device. */
15 	SetupTrimDevice();
16 
17 	return 0;
18 }
19 
20 SYS_INIT(ti_cc13x7_cc26x7_init, PRE_KERNEL_1, 0);
21