Get rid of sparse "cast to restricted __be16" warnings.
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        if (ace->type != OCELOT_ACE_TYPE_ETYPE)
                return false;
 
-       proto = ntohs(*(u16 *)ace->frame.etype.etype.value);
-       mask = ntohs(*(u16 *)ace->frame.etype.etype.mask);
+       proto = ntohs(*(__be16 *)ace->frame.etype.etype.value);
+       mask = ntohs(*(__be16 *)ace->frame.etype.etype.mask);
 
        /* ETH_P_ALL match, so all protocols below are included */
        if (mask == 0)
 
                if (proto < ETH_P_802_3_MIN)
                        return -EOPNOTSUPP;
                ace->type = OCELOT_ACE_TYPE_ETYPE;
-               *(u16 *)ace->frame.etype.etype.value = htons(proto);
-               *(u16 *)ace->frame.etype.etype.mask = 0xffff;
+               *(__be16 *)ace->frame.etype.etype.value = htons(proto);
+               *(__be16 *)ace->frame.etype.etype.mask = htons(0xffff);
        }
        /* else, a rule of type OCELOT_ACE_TYPE_ANY is implicitly added */