diff options
author | Stephen Hemminger <shemminger@linux-foundation.org> | 2007-02-20 18:58:02 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:00:56 -0400 |
commit | 459e536b1ddfd217ec8a3437a3214968a98223c7 (patch) | |
tree | 89fa87d66c29f8688586218e96d60de8a7be631f /drivers/net/chelsio/mv88x201x.c | |
parent | 4c247db114d95fb42528afe4c16db522dd050d7b (diff) |
chelsio: use const for virtual functions
There are several uses of _ops structure in this driver that
can be converted to const.
Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/chelsio/mv88x201x.c')
-rw-r--r-- | drivers/net/chelsio/mv88x201x.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/chelsio/mv88x201x.c b/drivers/net/chelsio/mv88x201x.c index c8e89480d906..cd856041af34 100644 --- a/drivers/net/chelsio/mv88x201x.c +++ b/drivers/net/chelsio/mv88x201x.c | |||
@@ -208,7 +208,7 @@ static struct cphy_ops mv88x201x_ops = { | |||
208 | }; | 208 | }; |
209 | 209 | ||
210 | static struct cphy *mv88x201x_phy_create(adapter_t *adapter, int phy_addr, | 210 | static struct cphy *mv88x201x_phy_create(adapter_t *adapter, int phy_addr, |
211 | struct mdio_ops *mdio_ops) | 211 | const struct mdio_ops *mdio_ops) |
212 | { | 212 | { |
213 | u32 val; | 213 | u32 val; |
214 | struct cphy *cphy = kzalloc(sizeof(*cphy), GFP_KERNEL); | 214 | struct cphy *cphy = kzalloc(sizeof(*cphy), GFP_KERNEL); |
@@ -252,7 +252,7 @@ static int mv88x201x_phy_reset(adapter_t *adapter) | |||
252 | return 0; | 252 | return 0; |
253 | } | 253 | } |
254 | 254 | ||
255 | struct gphy t1_mv88x201x_ops = { | 255 | const struct gphy t1_mv88x201x_ops = { |
256 | mv88x201x_phy_create, | 256 | .create = mv88x201x_phy_create, |
257 | mv88x201x_phy_reset | 257 | .reset = mv88x201x_phy_reset |
258 | }; | 258 | }; |