The "hi" variable is a u64 but the qca8k_read() writes to the top 32
bits of it.  That will work on little endian systems but it's a bit
subtle.  It's cleaner to make declare "hi" as a u32.  We will still need
to cast it when we shift it later on in the function but that's fine.
Fixes: 7c9896e37807 ("net: dsa: qca8k: check return value of read functions correctly")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Vladimir Oltean <olteanv@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        struct qca8k_priv *priv = (struct qca8k_priv *)ds->priv;
        const struct qca8k_mib_desc *mib;
        u32 reg, i, val;
-       u64 hi = 0;
+       u32 hi = 0;
        int ret;
 
        for (i = 0; i < ARRAY_SIZE(ar8327_mib); i++) {
                        continue;
 
                if (mib->size == 2) {
-                       ret = qca8k_read(priv, reg + 4, (u32 *)&hi);
+                       ret = qca8k_read(priv, reg + 4, &hi);
                        if (ret < 0)
                                continue;
                }
 
                data[i] = val;
                if (mib->size == 2)
-                       data[i] |= hi << 32;
+                       data[i] |= (u64)hi << 32;
        }
 }