mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
net: sfp: make sfp_bus_find_fwnode() take a const fwnode
sfp_bus_find_fwnode() does not write to the fwnode, so let's make it 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>
This commit is contained in:
committed by
David S. Miller
parent
e3cbdcb0fb
commit
a90ac762d3
@@ -593,7 +593,7 @@ static void sfp_upstream_clear(struct sfp_bus *bus)
|
|||||||
* - %-ENOMEM if we failed to allocate the bus.
|
* - %-ENOMEM if we failed to allocate the bus.
|
||||||
* - an error from the upstream's connect_phy() method.
|
* - an error from the upstream's connect_phy() method.
|
||||||
*/
|
*/
|
||||||
struct sfp_bus *sfp_bus_find_fwnode(struct fwnode_handle *fwnode)
|
struct sfp_bus *sfp_bus_find_fwnode(const struct fwnode_handle *fwnode)
|
||||||
{
|
{
|
||||||
struct fwnode_reference_args ref;
|
struct fwnode_reference_args ref;
|
||||||
struct sfp_bus *bus;
|
struct sfp_bus *bus;
|
||||||
|
|||||||
@@ -557,7 +557,7 @@ int sfp_get_module_eeprom_by_page(struct sfp_bus *bus,
|
|||||||
void sfp_upstream_start(struct sfp_bus *bus);
|
void sfp_upstream_start(struct sfp_bus *bus);
|
||||||
void sfp_upstream_stop(struct sfp_bus *bus);
|
void sfp_upstream_stop(struct sfp_bus *bus);
|
||||||
void sfp_bus_put(struct sfp_bus *bus);
|
void sfp_bus_put(struct sfp_bus *bus);
|
||||||
struct sfp_bus *sfp_bus_find_fwnode(struct fwnode_handle *fwnode);
|
struct sfp_bus *sfp_bus_find_fwnode(const struct fwnode_handle *fwnode);
|
||||||
int sfp_bus_add_upstream(struct sfp_bus *bus, void *upstream,
|
int sfp_bus_add_upstream(struct sfp_bus *bus, void *upstream,
|
||||||
const struct sfp_upstream_ops *ops);
|
const struct sfp_upstream_ops *ops);
|
||||||
void sfp_bus_del_upstream(struct sfp_bus *bus);
|
void sfp_bus_del_upstream(struct sfp_bus *bus);
|
||||||
@@ -619,7 +619,8 @@ static inline void sfp_bus_put(struct sfp_bus *bus)
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline struct sfp_bus *sfp_bus_find_fwnode(struct fwnode_handle *fwnode)
|
static inline struct sfp_bus *
|
||||||
|
sfp_bus_find_fwnode(const struct fwnode_handle *fwnode)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user