From: Ben Hutchings Date: Wed, 19 Aug 2009 03:13:03 +0000 (-0700) Subject: mdio: mdio_if_info::mmds should not be __bitwise X-Git-Tag: v2.6.32-rc1~703^2~345 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=23428e6b4649adfbdaa6a0c93fc6d652bf5f9d44;p=thirdparty%2Fkernel%2Flinux.git mdio: mdio_if_info::mmds should not be __bitwise I misunderstood the meaning of __bitwise. In practice it makes sparse warn about every use of mmds which is certainly not what we want. Signed-off-by: Ben Hutchings Signed-off-by: David S. Miller --- diff --git a/include/linux/mdio.h b/include/linux/mdio.h index cfdf1df2875e4..c779b49a1fda3 100644 --- a/include/linux/mdio.h +++ b/include/linux/mdio.h @@ -304,7 +304,7 @@ static inline __u16 mdio_phy_id_devad(int phy_id) */ struct mdio_if_info { int prtad; - u32 __bitwise mmds; + u32 mmds; unsigned mode_support; struct net_device *dev;