summaryrefslogtreecommitdiff
path: root/include/linux/phy.h
diff options
context:
space:
mode:
authorChristian Marangi <ansuelsmth@gmail.com>2023-12-15 14:15:31 +0100
committerDavid S. Miller <davem@davemloft.net>2023-12-17 20:10:07 +0000
commitebb30ccbbdbd6fae5177b676da4f4ac92bb4f635 (patch)
tree589899bff7f983c43c68480fffde400c21dc864a /include/linux/phy.h
parentdd7842878633453e38d6a4927593dd28b9d8ab91 (diff)
net: phy: make addr type u8 in phy_package_shared struct
Switch addr type in phy_package_shared struct to u8. The value is already checked to be non negative and to be less than PHY_MAX_ADDR, hence u8 is better suited than using int. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com> Reviewed-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r--include/linux/phy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h
index dbb5e13e3e1b..4b13cc85c4f5 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -338,7 +338,7 @@ struct mdio_bus_stats {
* phy_package_leave().
*/
struct phy_package_shared {
- int addr;
+ u8 addr;
refcount_t refcnt;
unsigned long flags;
size_t priv_size;