Browse Source

bcache: remove unnecessary space before ioctl function pointer arguments

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>
Coly Li 7 years ago
parent
commit
d0c1b89a40
1 changed files with 2 additions and 2 deletions
  1. 2 2
      drivers/md/bcache/bcache.h

+ 2 - 2
drivers/md/bcache/bcache.h

@@ -275,8 +275,8 @@ struct bcache_device {
 
 
 	int (*cache_miss)(struct btree *b, struct search *s,
 	int (*cache_miss)(struct btree *b, struct search *s,
 			  struct bio *bio, unsigned int sectors);
 			  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 {
 struct io {