[PATCH 2/6] mtd: maps: esb2rom: use pci_get_device_by_id()

From: Enrico Weigelt, metux IT consult
Date: Thu Nov 28 2019 - 07:56:59 EST


From: Enrico Weigelt <info@xxxxxxxxx>

Use the new pci_get_device_by_id() helper in order to reduce
a bit of boilerplate.

Signed-off-by: Enrico Weigelt, metux IT consult <info@xxxxxxxxx>
---
drivers/mtd/maps/esb2rom.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/maps/esb2rom.c b/drivers/mtd/maps/esb2rom.c
index 5c27c6994896..0c638ac6ad82 100644
--- a/drivers/mtd/maps/esb2rom.c
+++ b/drivers/mtd/maps/esb2rom.c
@@ -421,7 +421,7 @@ static int __init init_esb2rom(void)
pdev = NULL;
for (id = esb2rom_pci_tbl; id->vendor; id++) {
printk(KERN_DEBUG "device id = %x\n", id->device);
- pdev = pci_get_device(id->vendor, id->device, NULL);
+ pdev = pci_get_device_by_id(id);
if (pdev) {
printk(KERN_DEBUG "matched device = %x\n", id->device);
break;
--
2.11.0