1 /*
2  * Copyright (c) 2024 Nordic Semiconductor ASA
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef NRFS_GDFS_REQS_H
8 #define NRFS_GDFS_REQS_H
9 
10 #include "nrfs_reqs_common.h"
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 enum {
17 	NRFS_GDFS_REQ_FREQ	     = NRFS_REQUEST_ID_DEF(NRFS_SERVICE_ID_GDFS, 0x01),
18 };
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif /* NRFS_GDFS_REQS_H */
25