Skip to content

Commit bdeb2f9

Browse files
Deming Wangmstsirkin
authored andcommitted
virtio_ring: split: Operators use unified style
The operators of vring_alloc_queue_split should use the unified style.Add space for the '|' ,make it be looked more pretty. Signed-off-by: Deming Wang <[email protected]> Message-Id: <[email protected]> Signed-off-by: Michael S. Tsirkin <[email protected]>
1 parent 078adb3 commit bdeb2f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/virtio/virtio_ring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1066,7 +1066,7 @@ static int vring_alloc_queue_split(struct vring_virtqueue_split *vring_split,
10661066
if (!queue) {
10671067
/* Try to get a single page. You are my only hope! */
10681068
queue = vring_alloc_queue(vdev, vring_size(num, vring_align),
1069-
&dma_addr, GFP_KERNEL|__GFP_ZERO);
1069+
&dma_addr, GFP_KERNEL | __GFP_ZERO);
10701070
}
10711071
if (!queue)
10721072
return -ENOMEM;

0 commit comments

Comments
 (0)