Signedness bugs may occur when using signed char for bitops,
depending on if the highest bit is ever used.

Signed-off-by: Antoine Tenart <antoine.ten...@free-electrons.com>
Reported-by: Dan Carpenter <dan.carpen...@oracle.com>
---

Dan reported a static checker warning:
http://marc.info/?l=kernel-janitors&m=141218246222535&w=2

This patch fixes it. Instead of using sa->sa_data we now use
dev->dev_addr (of type unsigned char *) to avoid possible
signedness issues.

Resend: this patch was sent alongside another series, an was
considered part of the thread.

 drivers/net/ethernet/marvell/pxa168_eth.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c 
b/drivers/net/ethernet/marvell/pxa168_eth.c
index 24de41231593..c3b209cd0660 100644
--- a/drivers/net/ethernet/marvell/pxa168_eth.c
+++ b/drivers/net/ethernet/marvell/pxa168_eth.c
@@ -634,12 +634,12 @@ static int pxa168_eth_set_mac_address(struct net_device 
*dev, void *addr)
        memcpy(oldMac, dev->dev_addr, ETH_ALEN);
        memcpy(dev->dev_addr, sa->sa_data, ETH_ALEN);
 
-       mac_h = sa->sa_data[0] << 24;
-       mac_h |= sa->sa_data[1] << 16;
-       mac_h |= sa->sa_data[2] << 8;
-       mac_h |= sa->sa_data[3];
-       mac_l = sa->sa_data[4] << 8;
-       mac_l |= sa->sa_data[5];
+       mac_h = dev->dev_addr[0] << 24;
+       mac_h |= dev->dev_addr[1] << 16;
+       mac_h |= dev->dev_addr[2] << 8;
+       mac_h |= dev->dev_addr[3];
+       mac_l = dev->dev_addr[4] << 8;
+       mac_l |= dev->dev_addr[5];
        wrl(pep, MAC_ADDR_HIGH, mac_h);
        wrl(pep, MAC_ADDR_LOW, mac_l);
 
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to