projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87418ef
)
bcache: remove unnecessary space before ioctl function pointer arguments
author
Coly Li
<
[email protected]
>
Sat, 11 Aug 2018 05:19:59 +0000
(13:19 +0800)
committer
Jens Axboe
<
[email protected]
>
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 <
[email protected]
>
Reviewed-by: Shenghui Wang <
[email protected]
>
Signed-off-by: Jens Axboe <
[email protected]
>
drivers/md/bcache/bcache.h
patch
|
blob
|
history
diff --git
a/drivers/md/bcache/bcache.h
b/drivers/md/bcache/bcache.h
index 66e6d5639b385bfdd91c61d3653549033fdb12db..83504dd8100ab2a80d7f0e737e50266de41add32 100644
(file)
--- a/
drivers/md/bcache/bcache.h
+++ b/
drivers/md/bcache/bcache.h
@@
-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 {