qlcnic: Fix corruption while copying
authorShahed Shaikh <shahed.shaikh@qlogic.com>
Wed, 29 Jul 2015 11:55:35 +0000 (07:55 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 30 Jul 2015 06:57:26 +0000 (23:57 -0700)
Use proper typecasting while performing byte-by-byte copy

Signed-off-by: Shahed Shaikh <shahed.shaikh@qlogic.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/qlogic/qlcnic/qlcnic_83xx_init.c

index 33669c2..753ea8b 100644 (file)
@@ -1415,7 +1415,7 @@ static int qlcnic_83xx_copy_fw_file(struct qlcnic_adapter *adapter)
        if (fw->size & 0xF) {
                addr = dest + size;
                for (i = 0; i < (fw->size & 0xF); i++)
-                       data[i] = temp[size + i];
+                       data[i] = ((u8 *)temp)[size + i];
                for (; i < 16; i++)
                        data[i] = 0;
                ret = qlcnic_ms_mem_write128(adapter, addr,