1
0
Fork 0

virtio: console: Fix indentation

Convert spaces to tabs and fix indentation for an if statement split
into multiple lines.

Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
hifive-unleashed-5.1
Amit Shah 2011-09-14 13:06:39 +05:30 committed by Rusty Russell
parent 00b894e874
commit 286f9a226f
1 changed files with 1 additions and 1 deletions

View File

@ -1563,7 +1563,7 @@ static int init_vqs(struct ports_device *portdev)
portdev->out_vqs = kmalloc(nr_ports * sizeof(struct virtqueue *),
GFP_KERNEL);
if (!vqs || !io_callbacks || !io_names || !portdev->in_vqs ||
!portdev->out_vqs) {
!portdev->out_vqs) {
err = -ENOMEM;
goto free;
}