Commit 4f50ef15 authored by Michael Catanzaro's avatar Michael Catanzaro Committed by David S. Miller
Browse files

virtio_net: Fix code indent error



This patch fixes the checkpatch.pl warning:

ERROR: code indent should use tabs where possible #3453: FILE: drivers/net/virtio_net.c:3453: ret = register_virtio_driver(&virtio_net_driver);$

Uneccessary newline was also removed making line 3453 now 3452.

Signed-off-by: default avatarMichael Catanzaro <mcatanzaro.kernel@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9b3e446c
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -3449,7 +3449,6 @@ static __init int virtio_net_driver_init(void)
				      NULL, virtnet_cpu_dead);
	if (ret)
		goto err_dead;

	ret = register_virtio_driver(&virtio_net_driver);
	if (ret)
		goto err_virtio;