Message ID | 20220207174532.362781-3-enguerrand.de-ribaucourt@savoirfairelinux.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: phy: micrel: add Microchip KSZ 9897 Switch PHY | expand |
On Mon, Feb 07, 2022 at 06:45:36PM +0100, Enguerrand de Ribaucourt wrote: > PHY_ID_KSZ9477 was supported but not added to the device table passed to > MODULE_DEVICE_TABLE. > > Signed-off-by: Enguerrand de Ribaucourt <enguerrand.de-ribaucourt@savoirfairelinux.com> I'm pretty sure i gave a reviewed-by: for this patch. Please add such tags when you repost. Andrew
diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c index fc5c33194bdc..3112965a1fd4 100644 --- a/drivers/net/phy/micrel.c +++ b/drivers/net/phy/micrel.c @@ -1938,6 +1938,7 @@ static struct mdio_device_id __maybe_unused micrel_tbl[] = { { PHY_ID_KSZ886X, MICREL_PHY_ID_MASK }, { PHY_ID_LAN8814, MICREL_PHY_ID_MASK }, { PHY_ID_LAN8804, MICREL_PHY_ID_MASK }, + { PHY_ID_KSZ9477, MICREL_PHY_ID_MASK }, { } };
PHY_ID_KSZ9477 was supported but not added to the device table passed to MODULE_DEVICE_TABLE. Signed-off-by: Enguerrand de Ribaucourt <enguerrand.de-ribaucourt@savoirfairelinux.com> --- drivers/net/phy/micrel.c | 1 + 1 file changed, 1 insertion(+) -- 2.25.1