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

Commit a78b464a authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds
Browse files

[PATCH] cs46xx OSS: switch to pci_get_device



Fairly trivial change in this case

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 14fef641
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2982,7 +2982,7 @@ static void clkrun_hack(struct cs_card *card, int change)
	
	card->active+=change;
	
	acpi_dev = pci_find_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
	acpi_dev = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82371AB_3, NULL);
	if (acpi_dev == NULL)
		return;		/* Not a thinkpad thats for sure */

@@ -3008,6 +3008,7 @@ static void clkrun_hack(struct cs_card *card, int change)
				change,card->active));
		outw(control&~0x2000, port+0x10);
	}
	pci_dev_put(acpi_dev);
}