OSDN Git Service

bcache: remove unnecessary space before ioctl function pointer arguments
authorColy Li <colyli@suse.de>
Sat, 11 Aug 2018 05:19:59 +0000 (13:19 +0800)
committerJens Axboe <axboe@kernel.dk>
Sat, 11 Aug 2018 21:46:42 +0000 (15:46 -0600)
This is warned by checkpatch.pl, this patch removes the extra space.

Signed-off-by: Coly Li <colyli@suse.de>
Reviewed-by: Shenghui Wang <shhuiw@foxmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/md/bcache/bcache.h

index 66e6d56..83504dd 100644 (file)
@@ -275,8 +275,8 @@ struct bcache_device {
 
        int (*cache_miss)(struct btree *b, struct search *s,
                          struct bio *bio, unsigned int sectors);
-       int (*ioctl) (struct bcache_device *d, fmode_t mode,
-                     unsigned int cmd, unsigned long arg);
+       int (*ioctl)(struct bcache_device *d, fmode_t mode,
+                    unsigned int cmd, unsigned long arg);
 };
 
 struct io {