diff options
| author | Adrian Bunk <bunk@stusta.de> | 2006-01-06 01:45:42 -0500 |
|---|---|---|
| committer | Jeff Garzik <jgarzik@pobox.com> | 2006-01-09 10:54:47 -0500 |
| commit | cceb904f9b804f18250214fcd988eca72864970c (patch) | |
| tree | dd282cdabc75e0a298643c170a8b4840dd674f8e | |
| parent | f65fd8fbb2356d1b4412bc83810cf39a529de412 (diff) | |
[PATCH] drivers/net/bonding/bonding.h: "extern inline" -> "static inline"
"extern inline" doesn't make much sense.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
| -rw-r--r-- | drivers/net/bonding/bonding.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h index 015c7f1d1bc0..f20bb85c1ea5 100644 --- a/drivers/net/bonding/bonding.h +++ b/drivers/net/bonding/bonding.h | |||
| @@ -205,7 +205,7 @@ struct bonding { | |||
| 205 | * | 205 | * |
| 206 | * Caller must hold bond lock for read | 206 | * Caller must hold bond lock for read |
| 207 | */ | 207 | */ |
| 208 | extern inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct net_device *slave_dev) | 208 | static inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct net_device *slave_dev) |
| 209 | { | 209 | { |
| 210 | struct slave *slave = NULL; | 210 | struct slave *slave = NULL; |
| 211 | int i; | 211 | int i; |
| @@ -219,7 +219,7 @@ extern inline struct slave *bond_get_slave_by_dev(struct bonding *bond, struct n | |||
| 219 | return slave; | 219 | return slave; |
| 220 | } | 220 | } |
| 221 | 221 | ||
| 222 | extern inline struct bonding *bond_get_bond_by_slave(struct slave *slave) | 222 | static inline struct bonding *bond_get_bond_by_slave(struct slave *slave) |
| 223 | { | 223 | { |
| 224 | if (!slave || !slave->dev->master) { | 224 | if (!slave || !slave->dev->master) { |
| 225 | return NULL; | 225 | return NULL; |
| @@ -228,13 +228,13 @@ extern inline struct bonding *bond_get_bond_by_slave(struct slave *slave) | |||
| 228 | return (struct bonding *)slave->dev->master->priv; | 228 | return (struct bonding *)slave->dev->master->priv; |
| 229 | } | 229 | } |
| 230 | 230 | ||
| 231 | extern inline void bond_set_slave_inactive_flags(struct slave *slave) | 231 | static inline void bond_set_slave_inactive_flags(struct slave *slave) |
| 232 | { | 232 | { |
| 233 | slave->state = BOND_STATE_BACKUP; | 233 | slave->state = BOND_STATE_BACKUP; |
| 234 | slave->dev->flags |= IFF_NOARP; | 234 | slave->dev->flags |= IFF_NOARP; |
| 235 | } | 235 | } |
| 236 | 236 | ||
| 237 | extern inline void bond_set_slave_active_flags(struct slave *slave) | 237 | static inline void bond_set_slave_active_flags(struct slave *slave) |
| 238 | { | 238 | { |
| 239 | slave->state = BOND_STATE_ACTIVE; | 239 | slave->state = BOND_STATE_ACTIVE; |
| 240 | slave->dev->flags &= ~IFF_NOARP; | 240 | slave->dev->flags &= ~IFF_NOARP; |
