Commit ad89e2e3 authored by Julia Lawall's avatar Julia Lawall Committed by Hans Verkuil
Browse files

media: cx18: use GFP_KERNEL



Pci_driver probe functions aren't called with locks held
and thus don't need GFP_ATOMIC. Use GFP_KERNEL instead.

Problem found with Coccinelle.

Signed-off-by: default avatarJulia Lawall <Julia.Lawall@inria.fr>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
parent 11c77818
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -899,7 +899,7 @@ static int cx18_probe(struct pci_dev *pci_dev,
		return -ENOMEM;
	}

	cx = kzalloc(sizeof(*cx), GFP_ATOMIC);
	cx = kzalloc(sizeof(*cx), GFP_KERNEL);
	if (!cx)
		return -ENOMEM;