fix stmmac driver names in table

This commit is contained in:
Bjarne von Horn
2024-03-22 10:36:47 +01:00
parent 5d39d3b0cf
commit 19a347267c

View File

@@ -28,7 +28,7 @@ from re import compile
DRIVER_MAP=(
# (subdir, driver name, file prefix)
(".", "8139too", "8139too"),
("stmmac", "dwmac_intel", "dwmac-intel"),
("stmmac", "dwmac-intel", "dwmac-intel"),
(".", "e100", "e100"),
("e1000", "e1000", "e1000_main"),
("e1000e", "e1000e", "netdev"),
@@ -37,7 +37,7 @@ DRIVER_MAP=(
("igc", "igc", "igc_main"),
(".", "r8169", "r8169"),
("r8169", "r8169", "r8169_main"),
("stmmac", "stmmac_pci", "stmmac_pci"),
("stmmac", "stmmac-pci", "stmmac_pci"),
)