diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2023-03-24 12:23:53 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-03-27 10:12:01 +0300 |
commit | 4a0faa02d419a6728abef0f1d8a32d8c35ef95e6 (patch) | |
tree | e985d5e9e2dd5f85d82d816e54563d18b1c550d0 /drivers | |
parent | 850a8d2dc712abeea9a39b6cb53db6b78069ace0 (diff) | |
download | linux-4a0faa02d419a6728abef0f1d8a32d8c35ef95e6.tar.xz |
net: phy: constify fwnode_get_phy_node() fwnode argument
fwnode_get_phy_node() does not motify the fwnode structure, so make
the argument const,
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/phy/phy_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c index 1785f1cead97..1de3e339b31a 100644 --- a/drivers/net/phy/phy_device.c +++ b/drivers/net/phy/phy_device.c @@ -3057,7 +3057,7 @@ EXPORT_SYMBOL_GPL(device_phy_find_device); * and "phy-device" are not supported in ACPI. DT supports all the three * named references to the phy node. */ -struct fwnode_handle *fwnode_get_phy_node(struct fwnode_handle *fwnode) +struct fwnode_handle *fwnode_get_phy_node(const struct fwnode_handle *fwnode) { struct fwnode_handle *phy_node; |