From 63b2f9b4381e24c7d9d17d5773f9a5ce029ef30a Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 14 Dec 2022 13:35:12 +0100 Subject: Rename struct fs_driver_d to fs_driver Remove the meaningless '_d' suffix. Signed-off-by: Sascha Hauer Reviewed-by: Marco Felsch Link: https://lore.barebox.org/20221214123512.189688-6-s.hauer@pengutronix.de Signed-off-by: Sascha Hauer --- commands/mount.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commands') diff --git a/commands/mount.c b/commands/mount.c index 9684edf7c5..fddd770dc9 100644 --- a/commands/mount.c +++ b/commands/mount.c @@ -48,7 +48,7 @@ static int do_mount(int argc, char *argv[]) if (verbose) { printf("\nSupported filesystems:\n\n"); bus_for_each_driver(&fs_bus, drv) { - struct fs_driver_d * fsdrv = drv_to_fs_driver(drv); + struct fs_driver * fsdrv = drv_to_fs_driver(drv); printf("%s\n", fsdrv->drv.name); } } -- cgit v1.2.1