diff options
author | Holger Eitzenberger <holger@eitzenberger.org> | 2008-12-10 02:10:17 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-12-10 02:10:17 -0500 |
commit | 325dcf7a907a43f8832b92ae1c672798b4e60ce2 (patch) | |
tree | a11aef2c60b12f4f98cd15e2f3843677c056d7a2 /drivers/net/bonding/bond_main.c | |
parent | d78755237f0892c8d313a7f7b1774443a7308b11 (diff) |
bonding: make tbl argument to bond_parse_parm() const
bond_parse_parm() parses a parameter table for a particular value and
is therefore not modifying the table at all. Therefore make the 2nd
argument const, thus allowing to make the tables const later.
Signed-off-by: Holger Eitzenberger <holger@eitzenberger.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 19cd5c1e1bd3..581fd1798372 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c | |||
@@ -4723,7 +4723,7 @@ static void bond_free_all(void) | |||
4723 | * some mode names are substrings of other names, and calls from sysfs | 4723 | * some mode names are substrings of other names, and calls from sysfs |
4724 | * may have whitespace in the name (trailing newlines, for example). | 4724 | * may have whitespace in the name (trailing newlines, for example). |
4725 | */ | 4725 | */ |
4726 | int bond_parse_parm(const char *buf, struct bond_parm_tbl *tbl) | 4726 | int bond_parse_parm(const char *buf, const struct bond_parm_tbl *tbl) |
4727 | { | 4727 | { |
4728 | int mode = -1, i, rv; | 4728 | int mode = -1, i, rv; |
4729 | char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, }; | 4729 | char *p, modestr[BOND_MAX_MODENAME_LEN + 1] = { 0, }; |