1 /*
2  * Copyright (c) 2023 Google LLC.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr/init.h>
8 #include <zephyr/drivers/sensor.h>
9 
sensor_decoders_init(void)10 static int sensor_decoders_init(void)
11 {
12 	STRUCT_SECTION_FOREACH(sensor_decoder_api, api) {
13 		k_object_access_all_grant(api);
14 	}
15 	return 0;
16 }
17 
18 SYS_INIT(sensor_decoders_init, POST_KERNEL, 99);
19