]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
net: ksz9477: rename ksz_i2c_probe() to ksz_probe()
authorRomain Naour <romain.naour@smile.fr>
Tue, 8 Oct 2024 07:54:30 +0000 (09:54 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 27 Oct 2024 16:19:44 +0000 (10:19 -0600)
In order to support management bus other than the I2C, rename
ksz_i2c_probe() to ksz_probe() since this function is no longer
specific to the I2C bus.

Signed-off-by: Romain Naour <romain.naour@smile.fr>
drivers/net/ksz9477.c

index f24bf9943e76fb250ee8760e25e8136190784202..82db533c4ec1c98505ef6eb333c0e0fae1510e84 100644 (file)
@@ -576,10 +576,7 @@ static bool dsa_ksz_check_ops(struct ksz_phy_ops *phy_ops)
        return true;
 }
 
-/*
- * I2C driver
- */
-static int ksz_i2c_probe(struct udevice *dev)
+static int ksz_probe(struct udevice *dev)
 {
        struct dsa_pdata *pdata = dev_get_uclass_plat(dev);
        struct ksz_dsa_priv *priv = dev_get_priv(dev);
@@ -678,7 +675,7 @@ U_BOOT_DRIVER(ksz) = {
        .name           = "ksz-switch",
        .id             = UCLASS_DSA,
        .of_match       = ksz_ids,
-       .probe          = ksz_i2c_probe,
+       .probe          = ksz_probe,
        .ops            = &ksz_dsa_ops,
        .priv_auto      = sizeof(struct ksz_dsa_priv),
 };