aboutsummaryrefslogtreecommitdiff
path: root/common/log.c
diff options
context:
space:
mode:
authorSimon Glass2023-01-28 15:00:16 -0700
committerTom Rini2023-02-06 13:04:53 -0500
commit4f6daaca0fa225e785bd8293d7c5c88d9ff0b1bd (patch)
treef5eea03baf9710eeb208992dae416b67199b7502 /common/log.c
parent3574eb8229fd36b96b29adf0891272e16930e24a (diff)
log: Add a category for filesystems
Sometimes it is useful to log things related to filesystems. Add a new category and place it at the top of one of the FAT files. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/log.c')
-rw-r--r--common/log.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/common/log.c b/common/log.c
index 57b71ed1b36..7cfc49bc28a 100644
--- a/common/log.c
+++ b/common/log.c
@@ -30,6 +30,7 @@ static const char *const log_cat_name[] = {
"acpi",
"boot",
"event",
+ "fs",
};
_Static_assert(ARRAY_SIZE(log_cat_name) == LOGC_COUNT - LOGC_NONE,