From 3a544b832b392abbb05c085b296a6cc1a7328397 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 17 May 2022 16:37:33 +1000 Subject: [PATCH] lib/littlefs: Guard lfs2_file_rawopen with LFS2_NO_MALLOC. To prevent warnings about this function being unused when malloc is disabled. Signed-off-by: Damien George --- lib/littlefs/lfs2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/littlefs/lfs2.c b/lib/littlefs/lfs2.c index b708196d04..10f1691c42 100644 --- a/lib/littlefs/lfs2.c +++ b/lib/littlefs/lfs2.c @@ -2998,12 +2998,14 @@ cleanup: return err; } +#ifndef LFS2_NO_MALLOC static int lfs2_file_rawopen(lfs2_t *lfs2, lfs2_file_t *file, const char *path, int flags) { static const struct lfs2_file_config defaults = {0}; int err = lfs2_file_rawopencfg(lfs2, file, path, flags, &defaults); return err; } +#endif static int lfs2_file_rawclose(lfs2_t *lfs2, lfs2_file_t *file) { #ifndef LFS2_READONLY