summaryrefslogtreecommitdiffstats
path: root/drivers/block/loop/loop_file_fmt_raw.c
diff options
context:
space:
mode:
authorManuel Bentele2019-08-23 14:07:31 +0200
committerManuel Bentele2019-08-23 14:15:44 +0200
commit4da771a8b3c2d1c987950e223c93b2fa3dffab40 (patch)
tree4d892df76ddaf11d11998c19b475038f517939c4 /drivers/block/loop/loop_file_fmt_raw.c
parentdoc: driver-api: add loop file format subsystem API documentation (diff)
downloadkernel-qcow2-linux-4da771a8b3c2d1c987950e223c93b2fa3dffab40.tar.gz
kernel-qcow2-linux-4da771a8b3c2d1c987950e223c93b2fa3dffab40.tar.xz
kernel-qcow2-linux-4da771a8b3c2d1c987950e223c93b2fa3dffab40.zip
block: loop: fix coding style issues in file format subsystem
Removes trailing whitespaces and other coding style issues in the loop file format subsystem and all additional files regarding to its implementation. Signed-off-by: Manuel Bentele <development@manuel-bentele.de>
Diffstat (limited to 'drivers/block/loop/loop_file_fmt_raw.c')
-rw-r--r--drivers/block/loop/loop_file_fmt_raw.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/block/loop/loop_file_fmt_raw.c b/drivers/block/loop/loop_file_fmt_raw.c
index 1920dcf675fd..134a794cf4ad 100644
--- a/drivers/block/loop/loop_file_fmt_raw.c
+++ b/drivers/block/loop/loop_file_fmt_raw.c
@@ -108,7 +108,7 @@ out_free_page:
}
static int raw_file_fmt_read(struct loop_file_fmt *lo_fmt,
- struct request *rq)
+ struct request *rq)
{
struct bio_vec bvec;
struct req_iterator iter;
@@ -248,7 +248,7 @@ static int __raw_file_fmt_rw_aio(struct loop_file_fmt *lo_fmt,
}
static int raw_file_fmt_read_aio(struct loop_file_fmt *lo_fmt,
- struct request *rq)
+ struct request *rq)
{
return __raw_file_fmt_rw_aio(lo_fmt, rq, READ);
}
@@ -341,7 +341,7 @@ static int raw_file_fmt_write(struct loop_file_fmt *lo_fmt,
}
static int raw_file_fmt_write_aio(struct loop_file_fmt *lo_fmt,
- struct request *rq)
+ struct request *rq)
{
return __raw_file_fmt_rw_aio(lo_fmt, rq, WRITE);
}