From 9e4cabcf4356d13ad0abb602278b34e4a7ca57ae Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 11 Oct 2023 18:58:25 +0800 Subject: [PATCH] net: e1000: Drop e1000_eth_ids[] e1000_eth_ids holds compatible strings for e1000 devices, but it is meaningless as e1000 is a PCI device and there is no such compatible string assigned to e1000 by the DT bindings community. Drop it. Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- drivers/net/e1000.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/drivers/net/e1000.c b/drivers/net/e1000.c index 41e6ba760e..84a2a7cf90 100644 --- a/drivers/net/e1000.c +++ b/drivers/net/e1000.c @@ -5718,15 +5718,9 @@ static const struct eth_ops e1000_eth_ops = { .write_hwaddr = e1000_write_hwaddr, }; -static const struct udevice_id e1000_eth_ids[] = { - { .compatible = "intel,e1000" }, - { } -}; - U_BOOT_DRIVER(eth_e1000) = { .name = "eth_e1000", .id = UCLASS_ETH, - .of_match = e1000_eth_ids, .bind = e1000_eth_bind, .probe = e1000_eth_probe, .ops = &e1000_eth_ops, -- 2.39.5