netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address()
@ 2021-09-26  9:56 Christian Lamparter
  2021-09-26 14:35 ` Andrew Lunn
  2021-09-27 12:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Christian Lamparter @ 2021-09-26  9:56 UTC (permalink / raw)
  To: netdev; +Cc: David S . Miller, Jakub Kicinski

of_get_mac_address() reads the same "local-mac-address" property.
... But goes above and beyond by checking the MAC value properly.

printk+message seems outdated too,
so let's put dev_err in the queue.

Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
---
 drivers/net/ethernet/ibm/emac/core.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/drivers/net/ethernet/ibm/emac/core.c b/drivers/net/ethernet/ibm/emac/core.c
index 3fae7f943df1..43a29c66d5cc 100644
--- a/drivers/net/ethernet/ibm/emac/core.c
+++ b/drivers/net/ethernet/ibm/emac/core.c
@@ -2967,7 +2967,6 @@ static int emac_init_phy(struct emac_instance *dev)
 static int emac_init_config(struct emac_instance *dev)
 {
 	struct device_node *np = dev->ofdev->dev.of_node;
-	const void *p;
 	int err;
 
 	/* Read config from device-tree */
@@ -3099,13 +3098,12 @@ static int emac_init_config(struct emac_instance *dev)
 	}
 
 	/* Read MAC-address */
-	p = of_get_property(np, "local-mac-address", NULL);
-	if (p == NULL) {
-		printk(KERN_ERR "%pOF: Can't find local-mac-address property\n",
-		       np);
-		return -ENXIO;
+	err = of_get_mac_address(np, dev->ndev->dev_addr);
+	if (err) {
+		if (err != -EPROBE_DEFER)
+			dev_err(&dev->ofdev->dev, "Can't get valid [local-]mac-address from OF !\n");
+		return err;
 	}
-	memcpy(dev->ndev->dev_addr, p, ETH_ALEN);
 
 	/* IAHT and GAHT filter parameterization */
 	if (emac_has_feature(dev, EMAC_FTR_EMAC4SYNC)) {
-- 
2.33.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address()
  2021-09-26  9:56 [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address() Christian Lamparter
@ 2021-09-26 14:35 ` Andrew Lunn
  2021-09-27 12:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Andrew Lunn @ 2021-09-26 14:35 UTC (permalink / raw)
  To: Christian Lamparter; +Cc: netdev, David S . Miller, Jakub Kicinski

> +	err = of_get_mac_address(np, dev->ndev->dev_addr);
> +	if (err) {
> +		if (err != -EPROBE_DEFER)
> +			dev_err(&dev->ofdev->dev, "Can't get valid [local-]mac-address from OF !\n");
> +		return err;

I think there is a helper which does the if (err != -EPRODE_DEFER)
then print, but i cannot remember its name. Probably the script kids
will come along and convert it for you.

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address()
  2021-09-26  9:56 [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address() Christian Lamparter
  2021-09-26 14:35 ` Andrew Lunn
@ 2021-09-27 12:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2021-09-27 12:30 UTC (permalink / raw)
  To: Christian Lamparter; +Cc: netdev, davem, kuba

Hello:

This patch was applied to netdev/net-next.git (refs/heads/master):

On Sun, 26 Sep 2021 11:56:48 +0200 you wrote:
> of_get_mac_address() reads the same "local-mac-address" property.
> ... But goes above and beyond by checking the MAC value properly.
> 
> printk+message seems outdated too,
> so let's put dev_err in the queue.
> 
> Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
> 
> [...]

Here is the summary with links:
  - [net-next,v1] net: ethernet: emac: utilize of_net's of_get_mac_address()
    https://git.kernel.org/netdev/net-next/c/584351c31d19

You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-09-27 12:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-26  9:56 [PATCH net-next v1] net: ethernet: emac: utilize of_net's of_get_mac_address() Christian Lamparter
2021-09-26 14:35 ` Andrew Lunn
2021-09-27 12:30 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).