diff options
Diffstat (limited to 'extmod/fsusermount.h')
-rw-r--r-- | extmod/fsusermount.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extmod/fsusermount.h b/extmod/fsusermount.h index e1f26f2ce8..af6867d23c 100644 --- a/extmod/fsusermount.h +++ b/extmod/fsusermount.h @@ -57,6 +57,6 @@ typedef struct _fs_user_mount_t { fs_user_mount_t *fatfs_mount_mkfs(mp_uint_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args, bool mkfs); mp_obj_t fatfs_umount(mp_obj_t bdev_or_path_in); -MP_DECLARE_CONST_FUN_OBJ(fsuser_mount_obj); -MP_DECLARE_CONST_FUN_OBJ(fsuser_umount_obj); -MP_DECLARE_CONST_FUN_OBJ(fsuser_mkfs_obj); +MP_DECLARE_CONST_FUN_OBJ_KW(fsuser_mount_obj); +MP_DECLARE_CONST_FUN_OBJ_1(fsuser_umount_obj); +MP_DECLARE_CONST_FUN_OBJ_KW(fsuser_mkfs_obj); |