Skip to content

Commit a0d0606

Browse files
lategoodbyegregkh
authored andcommitted
microchip: lan865x: Fix LAN8651 autoloading
commit ca47c44 upstream. Add missing IDs for LAN8651 devices, which are also defined in the DT bindings. Fixes: 5cd2340 ("microchip: lan865x: add driver support for Microchip's LAN865X MAC-PHY") Signed-off-by: Stefan Wahren <wahrenst@gmx.net> Cc: stable@kernel.org Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> Link: https://patch.msgid.link/20250827115341.34608-4-wahrenst@gmx.net Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 1671a3b commit a0d0606

File tree

1 file changed

+2
-0
lines changed
  • drivers/net/ethernet/microchip/lan865x

1 file changed

+2
-0
lines changed

drivers/net/ethernet/microchip/lan865x/lan865x.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -425,12 +425,14 @@ static void lan865x_remove(struct spi_device *spi)
425425

426426
static const struct spi_device_id lan865x_ids[] = {
427427
{ .name = "lan8650" },
428+
{ .name = "lan8651" },
428429
{},
429430
};
430431
MODULE_DEVICE_TABLE(spi, lan865x_ids);
431432

432433
static const struct of_device_id lan865x_dt_ids[] = {
433434
{ .compatible = "microchip,lan8650" },
435+
{ .compatible = "microchip,lan8651" },
434436
{ /* Sentinel */ }
435437
};
436438
MODULE_DEVICE_TABLE(of, lan865x_dt_ids);

0 commit comments

Comments
 (0)