Commit ca0a95a6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

drivers/block/null_blk_main.c: fix layout

Each line here overflows 80 cols by exactly one character.  Delete one tab
per line to fix.

Cc: Shaohua Li <shli@fb.com>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 889b3317
...@@ -274,12 +274,12 @@ static ssize_t \ ...@@ -274,12 +274,12 @@ static ssize_t \
nullb_device_##NAME##_store(struct config_item *item, const char *page, \ nullb_device_##NAME##_store(struct config_item *item, const char *page, \
size_t count) \ size_t count) \
{ \ { \
int (*apply_fn)(struct nullb_device *dev, TYPE new_value) = APPLY; \ int (*apply_fn)(struct nullb_device *dev, TYPE new_value) = APPLY;\
struct nullb_device *dev = to_nullb_device(item); \ struct nullb_device *dev = to_nullb_device(item); \
TYPE new_value; \ TYPE new_value; \
int ret; \ int ret; \
\ \
ret = nullb_device_##TYPE##_attr_store(&new_value, page, count); \ ret = nullb_device_##TYPE##_attr_store(&new_value, page, count);\
if (ret < 0) \ if (ret < 0) \
return ret; \ return ret; \
if (apply_fn) \ if (apply_fn) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment