Commit 5a0d513b authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller

bridge: make port attributes const

Simple table that can be marked const.
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 0c7462a2
...@@ -27,7 +27,7 @@ struct brport_attribute { ...@@ -27,7 +27,7 @@ struct brport_attribute {
}; };
#define BRPORT_ATTR(_name,_mode,_show,_store) \ #define BRPORT_ATTR(_name,_mode,_show,_store) \
struct brport_attribute brport_attr_##_name = { \ const struct brport_attribute brport_attr_##_name = { \
.attr = {.name = __stringify(_name), \ .attr = {.name = __stringify(_name), \
.mode = _mode }, \ .mode = _mode }, \
.show = _show, \ .show = _show, \
...@@ -164,7 +164,7 @@ static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router, ...@@ -164,7 +164,7 @@ static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
store_multicast_router); store_multicast_router);
#endif #endif
static struct brport_attribute *brport_attrs[] = { static const struct brport_attribute *brport_attrs[] = {
&brport_attr_path_cost, &brport_attr_path_cost,
&brport_attr_priority, &brport_attr_priority,
&brport_attr_port_id, &brport_attr_port_id,
...@@ -241,7 +241,7 @@ const struct sysfs_ops brport_sysfs_ops = { ...@@ -241,7 +241,7 @@ const struct sysfs_ops brport_sysfs_ops = {
int br_sysfs_addif(struct net_bridge_port *p) int br_sysfs_addif(struct net_bridge_port *p)
{ {
struct net_bridge *br = p->br; struct net_bridge *br = p->br;
struct brport_attribute **a; const struct brport_attribute **a;
int err; int err;
err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj, err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment