Commit b0f801273f7359a7d91fc94f5c6bf216bc17aaa1

Authored by Konrad Rzeszutek Wilk
1 parent 03e0edf946

xen/blkback: Fixing some more of the cleanpatch.pl warnings.

Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>

Showing 2 changed files with 3 additions and 3 deletions Side-by-side Diff

drivers/block/xen-blkback/blkback.c
... ... @@ -637,7 +637,7 @@
637 637 /* This will be hit if the operation was a flush. */
638 638 if (!bio) {
639 639 BUG_ON(operation != WRITE_FLUSH);
640   -
  640 +
641 641 bio = bio_alloc(GFP_KERNEL, 0);
642 642 if (unlikely(bio == NULL))
643 643 goto fail_put_bio;
drivers/block/xen-blkback/common.h
... ... @@ -132,7 +132,7 @@
132 132  
133 133 struct xenbus_device *xen_blkbk_xenbus(struct backend_info *be);
134 134  
135   -static void inline blkif_get_x86_32_req(struct blkif_request *dst,
  135 +static inline void blkif_get_x86_32_req(struct blkif_request *dst,
136 136 struct blkif_x86_32_request *src)
137 137 {
138 138 int i, n = BLKIF_MAX_SEGMENTS_PER_REQUEST;
... ... @@ -148,7 +148,7 @@
148 148 dst->u.rw.seg[i] = src->seg[i];
149 149 }
150 150  
151   -static void inline blkif_get_x86_64_req(struct blkif_request *dst,
  151 +static inline void blkif_get_x86_64_req(struct blkif_request *dst,
152 152 struct blkif_x86_64_request *src)
153 153 {
154 154 int i, n = BLKIF_MAX_SEGMENTS_PER_REQUEST;