[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20191128125406.10417-3-info@metux.net>
Date: Thu, 28 Nov 2019 13:54:03 +0100
From: "Enrico Weigelt, metux IT consult" <info@...ux.net>
To: linux-kernel@...r.kernel.org
Cc: tim@...tersideup.com, james.morse@....com, rrichter@...vell.com,
jdelvare@...e.com, linux@...ck-us.net, miquel.raynal@...tlin.com,
richard@....at, vigneshr@...com, linux-crypto@...r.kernel.org,
linux-edac@...r.kernel.org, linux-hwmon@...r.kernel.org,
linux-mtd@...ts.infradead.org, linux-pci@...r.kernel.org
Subject: [PATCH 3/6] mtd: maps: amd76xrom: use pci_get_device_by_id()
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@...ux.net>
---
drivers/mtd/maps/amd76xrom.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/maps/amd76xrom.c b/drivers/mtd/maps/amd76xrom.c
index 462fadb56bdb..07a402dbdf44 100644
--- a/drivers/mtd/maps/amd76xrom.c
+++ b/drivers/mtd/maps/amd76xrom.c
@@ -323,7 +323,7 @@ static int __init init_amd76xrom(void)
const struct pci_device_id *id;
pdev = NULL;
for(id = amd76xrom_pci_tbl; id->vendor; id++) {
- pdev = pci_get_device(id->vendor, id->device, NULL);
+ pdev = pci_get_device_by_id(id);
if (pdev) {
break;
}
--
2.11.0
Powered by blists - more mailing lists