diff mbox series

[net] i825xx: sni_82596: use eth_hw_addr_set()

Message ID 20230315134117.79511-1-tsbogend@alpha.franken.de (mailing list archive)
State Accepted
Commit f38373345c65529639a01fba3675eb8cb4c579c3
Delegated to: Netdev Maintainers
Headers show
Series [net] i825xx: sni_82596: use eth_hw_addr_set() | expand

Checks

Context Check Description
netdev/series_format success Single patches do not need cover letters
netdev/tree_selection success Clearly marked for net
netdev/fixes_present success Fixes tag present in non-next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 18 this patch: 18
netdev/cc_maintainers success CCed 6 of 6 maintainers
netdev/build_clang success Errors and warnings before: 18 this patch: 18
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success Fixes tag looks correct
netdev/build_allmodconfig_warn success Errors and warnings before: 18 this patch: 18
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 26 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Thomas Bogendoerfer March 15, 2023, 1:41 p.m. UTC
Copy scrambled mac address octects into an array then eth_hw_addr_set().

Fixes: adeef3e32146 ("net: constify netdev->dev_addr")
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
---
 drivers/net/ethernet/i825xx/sni_82596.c | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

Comments

Michal Kubiak March 15, 2023, 6:12 p.m. UTC | #1
On Wed, Mar 15, 2023 at 02:41:17PM +0100, Thomas Bogendoerfer wrote:
> Copy scrambled mac address octects into an array then eth_hw_addr_set().
> 
> Fixes: adeef3e32146 ("net: constify netdev->dev_addr")
> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> ---
>  drivers/net/ethernet/i825xx/sni_82596.c | 14 ++++++++------
>  1 file changed, 8 insertions(+), 6 deletions(-)
> 
> diff --git a/drivers/net/ethernet/i825xx/sni_82596.c b/drivers/net/ethernet/i825xx/sni_82596.c
> index daec9ce04531..54bb4d9a0d1e 100644
> --- a/drivers/net/ethernet/i825xx/sni_82596.c
> +++ b/drivers/net/ethernet/i825xx/sni_82596.c
> @@ -78,6 +78,7 @@ static int sni_82596_probe(struct platform_device *dev)
>  	void __iomem *mpu_addr;
>  	void __iomem *ca_addr;
>  	u8 __iomem *eth_addr;
> +	u8 mac[ETH_ALEN];
>  
>  	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
>  	ca = platform_get_resource(dev, IORESOURCE_MEM, 1);
> @@ -109,12 +110,13 @@ static int sni_82596_probe(struct platform_device *dev)
>  		goto probe_failed;
>  
>  	/* someone seems to like messed up stuff */
> -	netdevice->dev_addr[0] = readb(eth_addr + 0x0b);
> -	netdevice->dev_addr[1] = readb(eth_addr + 0x0a);
> -	netdevice->dev_addr[2] = readb(eth_addr + 0x09);
> -	netdevice->dev_addr[3] = readb(eth_addr + 0x08);
> -	netdevice->dev_addr[4] = readb(eth_addr + 0x07);
> -	netdevice->dev_addr[5] = readb(eth_addr + 0x06);
> +	mac[0] = readb(eth_addr + 0x0b);
> +	mac[1] = readb(eth_addr + 0x0a);
> +	mac[2] = readb(eth_addr + 0x09);
> +	mac[3] = readb(eth_addr + 0x08);
> +	mac[4] = readb(eth_addr + 0x07);
> +	mac[5] = readb(eth_addr + 0x06);
> +	eth_hw_addr_set(netdevice, mac);
>  	iounmap(eth_addr);
>  
>  	if (netdevice->irq < 0) {
> -- 
> 2.35.3
> 

The fix looks fine. Good catch!
I would only suggest to add more description why it needed to be
changed.
(The current version of the commit message only contains information what
was done, but it is quite obvious by looking at the code).

Thanks,
Michal

Reviewed-by: Michal Kubiak <michal.kubiak@intel.com>
Jakub Kicinski March 17, 2023, 12:36 a.m. UTC | #2
On Wed, 15 Mar 2023 19:12:03 +0100 Michal Kubiak wrote:
> The fix looks fine. Good catch!
> I would only suggest to add more description why it needed to be
> changed.
> (The current version of the commit message only contains information what
> was done, but it is quite obvious by looking at the code).

Let me make an exception and add that info myself.. since I broke this
:)
patchwork-bot+netdevbpf@kernel.org March 17, 2023, 12:40 a.m. UTC | #3
Hello:

This patch was applied to netdev/net.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 15 Mar 2023 14:41:17 +0100 you wrote:
> Copy scrambled mac address octects into an array then eth_hw_addr_set().
> 
> Fixes: adeef3e32146 ("net: constify netdev->dev_addr")
> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
> ---
>  drivers/net/ethernet/i825xx/sni_82596.c | 14 ++++++++------
>  1 file changed, 8 insertions(+), 6 deletions(-)

Here is the summary with links:
  - [net] i825xx: sni_82596: use eth_hw_addr_set()
    https://git.kernel.org/netdev/net/c/f38373345c65

You are awesome, thank you!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/i825xx/sni_82596.c b/drivers/net/ethernet/i825xx/sni_82596.c
index daec9ce04531..54bb4d9a0d1e 100644
--- a/drivers/net/ethernet/i825xx/sni_82596.c
+++ b/drivers/net/ethernet/i825xx/sni_82596.c
@@ -78,6 +78,7 @@  static int sni_82596_probe(struct platform_device *dev)
 	void __iomem *mpu_addr;
 	void __iomem *ca_addr;
 	u8 __iomem *eth_addr;
+	u8 mac[ETH_ALEN];
 
 	res = platform_get_resource(dev, IORESOURCE_MEM, 0);
 	ca = platform_get_resource(dev, IORESOURCE_MEM, 1);
@@ -109,12 +110,13 @@  static int sni_82596_probe(struct platform_device *dev)
 		goto probe_failed;
 
 	/* someone seems to like messed up stuff */
-	netdevice->dev_addr[0] = readb(eth_addr + 0x0b);
-	netdevice->dev_addr[1] = readb(eth_addr + 0x0a);
-	netdevice->dev_addr[2] = readb(eth_addr + 0x09);
-	netdevice->dev_addr[3] = readb(eth_addr + 0x08);
-	netdevice->dev_addr[4] = readb(eth_addr + 0x07);
-	netdevice->dev_addr[5] = readb(eth_addr + 0x06);
+	mac[0] = readb(eth_addr + 0x0b);
+	mac[1] = readb(eth_addr + 0x0a);
+	mac[2] = readb(eth_addr + 0x09);
+	mac[3] = readb(eth_addr + 0x08);
+	mac[4] = readb(eth_addr + 0x07);
+	mac[5] = readb(eth_addr + 0x06);
+	eth_hw_addr_set(netdevice, mac);
 	iounmap(eth_addr);
 
 	if (netdevice->irq < 0) {