We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dbf509 commit 86ff3f1Copy full SHA for 86ff3f1
sys/config/conf_mmap/include/conf_mmap/conf_mmap.h
@@ -63,13 +63,13 @@ extern "C" {
63
*/
64
struct conf_mmap_kv {
65
const char *cmk_key; /* key (string) */
66
- uint16_t cmk_off; /* offset from conf_mmap.cm_base */
+ uint16_t cmk_off; /* offset of value from conf_mmap.cm_base */
67
uint16_t cmk_maxlen; /* maximum length of value */
68
};
69
70
struct conf_mmap {
71
struct conf_store cm_store;
72
- uintptr_t cm_base;
+ uintptr_t cm_base; /* base address */
73
int cm_kv_cnt; /* number of key/value array elements */
74
const struct conf_mmap_kv *cm_kv; /* key/value array */
75
0 commit comments