diff options
author | Dongbo Cao <cdbdyx@163.com> | 2018-10-08 08:41:17 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2018-10-08 10:19:53 -0400 |
commit | 91bafdf081b8ad8ab4977918ee45dffe3d744060 (patch) | |
tree | 2a3a455bddfebd55949b066b1891a833f331f63d /drivers/md/bcache/debug.c | |
parent | 3fd3c5c02b2865e506bee1212c8423eac0d4cddf (diff) |
bcache: remove useless parameter of bch_debug_init()
Parameter "struct kobject *kobj" in bch_debug_init() is useless,
remove it in this patch.
Signed-off-by: Dongbo Cao <cdbdyx@163.com>
Signed-off-by: Coly Li <colyli@suse.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/md/bcache/debug.c')
-rw-r--r-- | drivers/md/bcache/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/bcache/debug.c b/drivers/md/bcache/debug.c index 06da66b2488a..8f448b9c96a1 100644 --- a/drivers/md/bcache/debug.c +++ b/drivers/md/bcache/debug.c | |||
@@ -253,7 +253,7 @@ void bch_debug_exit(void) | |||
253 | debugfs_remove_recursive(bcache_debug); | 253 | debugfs_remove_recursive(bcache_debug); |
254 | } | 254 | } |
255 | 255 | ||
256 | void __init bch_debug_init(struct kobject *kobj) | 256 | void __init bch_debug_init(void) |
257 | { | 257 | { |
258 | /* | 258 | /* |
259 | * it is unnecessary to check return value of | 259 | * it is unnecessary to check return value of |