diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-10-05 02:01:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-07 04:10:47 -0400 |
commit | 32953543221cfe2bf0a24205fab225e5b8ed81a0 (patch) | |
tree | 48343bcd03f897a97fde1dd597205e8323d1323a /drivers | |
parent | ec1b4cf74c81bfd0fbe5bf62bafc86c45917e72f (diff) |
dcb: data center bridging ops should be r/o
The data center bridging ops structure can be const
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Acked-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ixgbe/ixgbe.h | 2 | ||||
-rw-r--r-- | drivers/net/ixgbe/ixgbe_dcb_nl.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ixgbe/ixgbe.h b/drivers/net/ixgbe/ixgbe.h index 385be6016667..28f32da794dd 100644 --- a/drivers/net/ixgbe/ixgbe.h +++ b/drivers/net/ixgbe/ixgbe.h | |||
@@ -397,7 +397,7 @@ enum ixgbe_boards { | |||
397 | extern struct ixgbe_info ixgbe_82598_info; | 397 | extern struct ixgbe_info ixgbe_82598_info; |
398 | extern struct ixgbe_info ixgbe_82599_info; | 398 | extern struct ixgbe_info ixgbe_82599_info; |
399 | #ifdef CONFIG_IXGBE_DCB | 399 | #ifdef CONFIG_IXGBE_DCB |
400 | extern struct dcbnl_rtnl_ops dcbnl_ops; | 400 | extern const struct dcbnl_rtnl_ops dcbnl_ops; |
401 | extern int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config *src_dcb_cfg, | 401 | extern int ixgbe_copy_dcb_cfg(struct ixgbe_dcb_config *src_dcb_cfg, |
402 | struct ixgbe_dcb_config *dst_dcb_cfg, | 402 | struct ixgbe_dcb_config *dst_dcb_cfg, |
403 | int tc_max); | 403 | int tc_max); |
diff --git a/drivers/net/ixgbe/ixgbe_dcb_nl.c b/drivers/net/ixgbe/ixgbe_dcb_nl.c index a6bc1ef28f92..3c7a79a7d7c6 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_nl.c +++ b/drivers/net/ixgbe/ixgbe_dcb_nl.c | |||
@@ -563,7 +563,7 @@ static u8 ixgbe_dcbnl_setapp(struct net_device *netdev, | |||
563 | return rval; | 563 | return rval; |
564 | } | 564 | } |
565 | 565 | ||
566 | struct dcbnl_rtnl_ops dcbnl_ops = { | 566 | const struct dcbnl_rtnl_ops dcbnl_ops = { |
567 | .getstate = ixgbe_dcbnl_get_state, | 567 | .getstate = ixgbe_dcbnl_get_state, |
568 | .setstate = ixgbe_dcbnl_set_state, | 568 | .setstate = ixgbe_dcbnl_set_state, |
569 | .getpermhwaddr = ixgbe_dcbnl_get_perm_hw_addr, | 569 | .getpermhwaddr = ixgbe_dcbnl_get_perm_hw_addr, |