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

Commit 945ef5bb authored by Rasmus Villemoes's avatar Rasmus Villemoes Committed by Daniel Vetter
Browse files

vgaarb: use kzalloc in vga_arbiter_add_pci_device()

parent fa4270d8
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -531,7 +531,7 @@ static bool vga_arbiter_add_pci_device(struct pci_dev *pdev)
		return false;

	/* Allocate structure */
	vgadev = kmalloc(sizeof(struct vga_device), GFP_KERNEL);
	vgadev = kzalloc(sizeof(struct vga_device), GFP_KERNEL);
	if (vgadev == NULL) {
		pr_err("failed to allocate pci device\n");
		/*
@@ -541,8 +541,6 @@ static bool vga_arbiter_add_pci_device(struct pci_dev *pdev)
		return false;
	}

	memset(vgadev, 0, sizeof(*vgadev));

	/* Take lock & check for duplicates */
	spin_lock_irqsave(&vga_lock, flags);
	if (vgadev_find(pdev) != NULL) {