Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f913dd45 authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

virtio_pci: fix coding style for structs



should be

struct foo {
}

not

struct foo
{
}

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent af535722
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -32,8 +32,7 @@ MODULE_LICENSE("GPL");
MODULE_VERSION("1");

/* Our device structure */
struct virtio_pci_device
{
struct virtio_pci_device {
	struct virtio_device vdev;
	struct pci_dev *pci_dev;

@@ -72,8 +71,7 @@ enum {
	VP_MSIX_VQ_VECTOR = 1,
};

struct virtio_pci_vq_info
{
struct virtio_pci_vq_info {
	/* the actual virtqueue */
	struct virtqueue *vq;