From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Leitner Subject: [PATCH] net: phy: harmonize phy_id{,_mask} data type Date: Tue, 21 Nov 2017 10:52:56 +0100 Message-ID: <20171121095256.25507-1-dev@g0hl1n.net> Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, richard.leitner@skidata.com To: f.fainelli@gmail.com, andrew@lunn.ch Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org From: Richard Leitner Previously phy_id was u32 and phy_id_mask was unsigned int. As the phy_id_mask defines the important bits of the phy_id (and is therefore the same size) these two variables should be the same data type. Signed-off-by: Richard Leitner --- This patch is extracted from the "net: ethernet: fec: fix refclk enable for SMSC LAN8710/20" patch series. This was done because this series will be reworked and rebased on not yet merged feature later on. For more details see: https://patchwork.ozlabs.org/cover/839468/ --- include/linux/phy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/phy.h b/include/linux/phy.h index dc82a07cb4fd..e00fd9ce3bce 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -509,7 +509,7 @@ struct phy_driver { struct mdio_driver_common mdiodrv; u32 phy_id; char *name; - unsigned int phy_id_mask; + u32 phy_id_mask; u32 features; u32 flags; const void *driver_data; -- 2.11.0