aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding
diff options
context:
space:
mode:
authorFrans Pop <elendil@planet.nl>2010-03-24 03:57:36 -0400
committerDavid S. Miller <davem@davemloft.net>2010-03-24 17:10:38 -0400
commit2381a55c88453d3f29fe62d235579a05fc20b7b3 (patch)
treeb962ee6d3f5260622504433ef6a485703d3da8dd /drivers/net/bonding
parentd6dbee861386cd3f4cee62bcf28597e63e251e0c (diff)
net/various: remove trailing space in messages
Signed-off-by: Frans Pop <elendil@planet.nl> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r--drivers/net/bonding/bond_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index c2aceaab0143..f8ab60b914c4 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -4667,13 +4667,13 @@ static int bond_check_params(struct bond_params *params)
4667 } 4667 }
4668 4668
4669 if (num_grat_arp < 0 || num_grat_arp > 255) { 4669 if (num_grat_arp < 0 || num_grat_arp > 255) {
4670 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1 \n", 4670 pr_warning("Warning: num_grat_arp (%d) not in range 0-255 so it was reset to 1\n",
4671 num_grat_arp); 4671 num_grat_arp);
4672 num_grat_arp = 1; 4672 num_grat_arp = 1;
4673 } 4673 }
4674 4674
4675 if (num_unsol_na < 0 || num_unsol_na > 255) { 4675 if (num_unsol_na < 0 || num_unsol_na > 255) {
4676 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1 \n", 4676 pr_warning("Warning: num_unsol_na (%d) not in range 0-255 so it was reset to 1\n",
4677 num_unsol_na); 4677 num_unsol_na);
4678 num_unsol_na = 1; 4678 num_unsol_na = 1;
4679 } 4679 }