[U-Boot] [Patch] for drivers/net/phy/smsc.c to support SMSC LAN8741

Hello, Be mild with me - my first patch to u-boot.
Signed-off-by: Arno Steffens <star {at} gmx [dot] li>
diff -Nur u-boot-2017.11/drivers/net/phy/smsc.c u-boot-2017.11_patched/drivers/net/phy/smsc.c --- u-boot-2017.11/drivers/net/phy/smsc.c 2017-11-14 02:08:06.000000000 +0100 +++ u-boot-2017.11_patched/drivers/net/phy/smsc.c 2018-01-24 12:17:39.326055469 +0100 @@ -83,6 +83,16 @@ .shutdown = &genphy_shutdown, };
+static struct phy_driver lan8741_driver = { + .name = "SMSC LAN8741", + .uid = 0x0007c120, + .mask = 0xffff0, + .features = PHY_BASIC_FEATURES, + .config = &genphy_config_aneg, + .startup = &genphy_startup, + .shutdown = &genphy_shutdown, +}; + static struct phy_driver lan8742_driver = { .name = "SMSC LAN8742", .uid = 0x0007c130, @@ -99,6 +109,7 @@ phy_register(&lan911x_driver); phy_register(&lan8700_driver); phy_register(&lan8740_driver); + phy_register(&lan8741_driver); phy_register(&lan8742_driver);
return 0;

Hi Arno,
Welcome.
On Thu, Jan 25, 2018 at 6:08 AM, Arno Steffens star@gmx.li wrote:
Hello, Be mild with me - my first patch to u-boot.
Generally this is the type of thing you add after "---" in the message body, so that it won't be included in the commit log, only in the email.
Please see http://www.denx.de/wiki/U-Boot/Patches
Also, look into patman - a tool in the source tree of U-Boot ( tools/patman/README ) that helps with some of the mechanics of sending patches.
Signed-off-by: Arno Steffens <star {at} gmx [dot] li>
You shouldn't obfuscate your email in the patch itself.
diff -Nur u-boot-2017.11/drivers/net/phy/smsc.c u-boot-2017.11_patched/drivers/net/phy/smsc.c --- u-boot-2017.11/drivers/net/phy/smsc.c 2017-11-14 02:08:06.000000000 +0100 +++ u-boot-2017.11_patched/drivers/net/phy/smsc.c 2018-01-24 12:17:39.326055469 +0100 @@ -83,6 +83,16 @@ .shutdown = &genphy_shutdown, };
+static struct phy_driver lan8741_driver = {
- .name = "SMSC LAN8741",
- .uid = 0x0007c120,
- .mask = 0xffff0,
- .features = PHY_BASIC_FEATURES,
- .config = &genphy_config_aneg,
- .startup = &genphy_startup,
- .shutdown = &genphy_shutdown,
+};
The code change itself looks fine!
Cheers, -Joe
static struct phy_driver lan8742_driver = { .name = "SMSC LAN8742", .uid = 0x0007c130, @@ -99,6 +109,7 @@ phy_register(&lan911x_driver); phy_register(&lan8700_driver); phy_register(&lan8740_driver);
- phy_register(&lan8741_driver);
phy_register(&lan8742_driver);
return 0; _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Hi Arno,
On Fri, Feb 16, 2018 at 4:29 PM, Joe Hershberger joe.hershberger@ni.com wrote:
Hi Arno,
Welcome.
On Thu, Jan 25, 2018 at 6:08 AM, Arno Steffens star@gmx.li wrote:
Hello, Be mild with me - my first patch to u-boot.
Generally this is the type of thing you add after "---" in the message body, so that it won't be included in the commit log, only in the email.
Please see http://www.denx.de/wiki/U-Boot/Patches
Also, look into patman - a tool in the source tree of U-Boot ( tools/patman/README ) that helps with some of the mechanics of sending patches.
Signed-off-by: Arno Steffens <star {at} gmx [dot] li>
You shouldn't obfuscate your email in the patch itself.
diff -Nur u-boot-2017.11/drivers/net/phy/smsc.c u-boot-2017.11_patched/drivers/net/phy/smsc.c --- u-boot-2017.11/drivers/net/phy/smsc.c 2017-11-14 02:08:06.000000000 +0100 +++ u-boot-2017.11_patched/drivers/net/phy/smsc.c 2018-01-24 12:17:39.326055469 +0100 @@ -83,6 +83,16 @@ .shutdown = &genphy_shutdown, };
+static struct phy_driver lan8741_driver = {
- .name = "SMSC LAN8741",
- .uid = 0x0007c120,
- .mask = 0xffff0,
- .features = PHY_BASIC_FEATURES,
- .config = &genphy_config_aneg,
- .startup = &genphy_startup,
- .shutdown = &genphy_shutdown,
+};
The code change itself looks fine!
Cheers, -Joe
static struct phy_driver lan8742_driver = { .name = "SMSC LAN8742", .uid = 0x0007c130, @@ -99,6 +109,7 @@ phy_register(&lan911x_driver); phy_register(&lan8700_driver); phy_register(&lan8740_driver);
- phy_register(&lan8741_driver);
phy_register(&lan8742_driver);
return 0;
I've reworked the format of your patch to make it apply this time. In the future, please use patman to send patches.
Thanks, -Joe
Acked-by: Joe Hershberger joe.hershberger@ni.com

Hi Arno,
https://patchwork.ozlabs.org/patch/865881/ was applied to http://git.denx.de/?p=u-boot/u-boot-net.git
Thanks! -Joe
participants (2)
-
Arno Steffens
-
Joe Hershberger