@@ -137,7 +137,7 @@ int bm_zms_mount(struct bm_zms_fs *fs);
137
137
* @param fs Pointer to the file system.
138
138
*
139
139
* @retval 0 if the clear operation is queued successfully.
140
- * @retval -EACCES if `fs` is not mounted.
140
+ * @retval -EACCES if @p fs is not mounted.
141
141
* @retval -EIO if there is an internal error.
142
142
*/
143
143
int bm_zms_clear (struct bm_zms_fs * fs );
@@ -159,7 +159,7 @@ int bm_zms_clear(struct bm_zms_fs *fs);
159
159
* On error, returns negative value of error codes defined in `errno.h`.
160
160
* @retval -EACCES if BM_ZMS is still not initialized.
161
161
* @retval -EIO if there is an internal error.
162
- * @retval -EINVAL if ` len` is invalid.
162
+ * @retval -EINVAL if @p len is invalid.
163
163
*/
164
164
ssize_t bm_zms_write (struct bm_zms_fs * fs , uint32_t id , const void * data , size_t len );
165
165
@@ -190,7 +190,7 @@ int bm_zms_delete(struct bm_zms_fs *fs, uint32_t id);
190
190
* @retval Number of bytes read (> 0) on success.
191
191
* @retval -EACCES if BM_ZMS is still not initialized.
192
192
* @retval -EIO if there is a memory read/write error.
193
- * @retval -ENOENT if there is no entry with the given `id` .
193
+ * @retval -ENOENT if there is no entry with the given @p id .
194
194
*/
195
195
ssize_t bm_zms_read (struct bm_zms_fs * fs , uint32_t id , void * data , size_t len );
196
196
@@ -210,7 +210,7 @@ ssize_t bm_zms_read(struct bm_zms_fs *fs, uint32_t id, void *data, size_t len);
210
210
* @retval Number of bytes read (> 0) on success.
211
211
* @retval -EACCES if BM_ZMS is still not initialized.
212
212
* @retval -EIO if there is a memory read/write error.
213
- * @retval -ENOENT if there is no entry with the given `id` and history counter.
213
+ * @retval -ENOENT if there is no entry with the given @p id and history counter.
214
214
*/
215
215
ssize_t bm_zms_read_hist (struct bm_zms_fs * fs , uint32_t id , void * data , size_t len , uint32_t cnt );
216
216
@@ -222,10 +222,10 @@ ssize_t bm_zms_read_hist(struct bm_zms_fs *fs, uint32_t id, void *data, size_t l
222
222
*
223
223
* @return Data length contained in the ATE. On success, it will be equal to the number of bytes
224
224
* in the ATE. On error, returns negative value of error codes defined in `errno.h`.
225
- * @retval Length of the entry with the given `id` (> 0) on success.
225
+ * @retval Length of the entry with the given @p id (> 0) on success.
226
226
* @retval -EACCES if BM_ZMS is still not initialized.
227
227
* @retval -EIO if there is a memory read/write error.
228
- * @retval -ENOENT if there is no entry with the given id and history counter.
228
+ * @retval -ENOENT if there is no entry with the given @p id and history counter.
229
229
*/
230
230
ssize_t bm_zms_get_data_length (struct bm_zms_fs * fs , uint32_t id );
231
231
0 commit comments