diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2016-04-17 20:23:55 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-18 01:54:14 +0300 |
commit | 0209d144e3097fee1fe5d38532e6f0919c80d1ea (patch) | |
tree | 8be0d13a7ca618200f5d096f7c05e208ea377d17 /drivers/net/dsa/mv88e6xxx.h | |
parent | efde611b0afa47e64f2a329f4430830b91d77ea2 (diff) | |
download | linux-0209d144e3097fee1fe5d38532e6f0919c80d1ea.tar.xz |
net: dsa: constify probed name
Change the dsa_switch_driver.probe function to return a const char *.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/mv88e6xxx.h')
-rw-r--r-- | drivers/net/dsa/mv88e6xxx.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/dsa/mv88e6xxx.h b/drivers/net/dsa/mv88e6xxx.h index 0debb9f3cf0a..5eb601398835 100644 --- a/drivers/net/dsa/mv88e6xxx.h +++ b/drivers/net/dsa/mv88e6xxx.h @@ -462,10 +462,10 @@ struct mv88e6xxx_hw_stat { }; int mv88e6xxx_switch_reset(struct dsa_switch *ds, bool ppu_active); -char *mv88e6xxx_drv_probe(struct device *dsa_dev, struct device *host_dev, - int sw_addr, void **priv, - const struct mv88e6xxx_switch_id *table, - unsigned int num); +const char *mv88e6xxx_drv_probe(struct device *dsa_dev, struct device *host_dev, + int sw_addr, void **priv, + const struct mv88e6xxx_switch_id *table, + unsigned int num); int mv88e6xxx_setup_ports(struct dsa_switch *ds); int mv88e6xxx_setup_common(struct dsa_switch *ds); |