Skip to content

Commit

Permalink
bridge: make port attributes const
Browse files Browse the repository at this point in the history
Simple table that can be marked const.

Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
stephen hemminger authored and davem330 committed Jul 30, 2012
1 parent 0c7462a commit 5a0d513
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions net/bridge/br_sysfs_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ struct brport_attribute {
};

#define BRPORT_ATTR(_name,_mode,_show,_store) \
struct brport_attribute brport_attr_##_name = { \
const struct brport_attribute brport_attr_##_name = { \
.attr = {.name = __stringify(_name), \
.mode = _mode }, \
.show = _show, \
Expand Down Expand Up @@ -164,7 +164,7 @@ static BRPORT_ATTR(multicast_router, S_IRUGO | S_IWUSR, show_multicast_router,
store_multicast_router);
#endif

static struct brport_attribute *brport_attrs[] = {
static const struct brport_attribute *brport_attrs[] = {
&brport_attr_path_cost,
&brport_attr_priority,
&brport_attr_port_id,
Expand Down Expand Up @@ -241,7 +241,7 @@ const struct sysfs_ops brport_sysfs_ops = {
int br_sysfs_addif(struct net_bridge_port *p)
{
struct net_bridge *br = p->br;
struct brport_attribute **a;
const struct brport_attribute **a;
int err;

err = sysfs_create_link(&p->kobj, &br->dev->dev.kobj,
Expand Down

0 comments on commit 5a0d513

Please sign in to comment.