[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171127071645.27077-1-dev@g0hl1n.net>
Date: Mon, 27 Nov 2017 08:16:45 +0100
From: Richard Leitner <dev@...l1n.net>
To: f.fainelli@...il.com, andrew@...n.ch
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
richard.leitner@...data.com
Subject: [PATCH RESEND] net: phy: harmonize phy_id{,_mask} data type
From: Richard Leitner <richard.leitner@...data.com>
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 <richard.leitner@...data.com>
Reviewed-by: Florian Fainelli <f.fainelli@...il.com>
Reviewed-by: Andrew Lunn <andrew@...n.ch>
---
RESEND as suggested by Andrew Lunn
---
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
Powered by blists - more mailing lists