From: Jean Delvare Date: Sat, 25 Jul 2020 12:00:15 +0000 (+0800) Subject: bcache: Fix typo in Kconfig name X-Git-Tag: v5.15~3211^2~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6acd193b2654a9ccdeb18a51f1348c17b97e1d78;p=platform%2Fkernel%2Flinux-starfive.git bcache: Fix typo in Kconfig name registraion -> registration Fixes: 0c8d3fceade2 ("bcache: configure the asynchronous registertion to be experimental") Signed-off-by: Jean Delvare Reviewed-by: Coly Li Cc: Jens Axboe Cc: Kent Overstreet Signed-off-by: Jens Axboe --- diff --git a/drivers/md/bcache/Kconfig b/drivers/md/bcache/Kconfig index bf7dd96..d1ca4d0 100644 --- a/drivers/md/bcache/Kconfig +++ b/drivers/md/bcache/Kconfig @@ -27,7 +27,7 @@ config BCACHE_CLOSURES_DEBUG interface to list them, which makes it possible to see asynchronous operations that get stuck. -config BCACHE_ASYNC_REGISTRAION +config BCACHE_ASYNC_REGISTRATION bool "Asynchronous device registration (EXPERIMENTAL)" depends on BCACHE help diff --git a/drivers/md/bcache/super.c b/drivers/md/bcache/super.c index de13f6e..fb54a59 100644 --- a/drivers/md/bcache/super.c +++ b/drivers/md/bcache/super.c @@ -2790,7 +2790,7 @@ static int __init bcache_init(void) static const struct attribute *files[] = { &ksysfs_register.attr, &ksysfs_register_quiet.attr, -#ifdef CONFIG_BCACHE_ASYNC_REGISTRAION +#ifdef CONFIG_BCACHE_ASYNC_REGISTRATION &ksysfs_register_async.attr, #endif &ksysfs_pendings_cleanup.attr,