diff options
author | Sven Eckelmann <sven@narfation.org> | 2012-07-08 11:13:15 -0400 |
---|---|---|
committer | Antonio Quartulli <ordex@autistici.org> | 2012-08-23 08:20:20 -0400 |
commit | bbb1f90efba89b31fc5e329d5fcaf10aca99212b (patch) | |
tree | db2645f7068d5da5b501559e6a2972c20f361082 /net/batman-adv/send.c | |
parent | 8de47de5757bd5f64a823185e544210d95fd2088 (diff) |
batman-adv: Don't break statements after assignment operator
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Antonio Quartulli <ordex@autistici.org>
Diffstat (limited to 'net/batman-adv/send.c')
-rw-r--r-- | net/batman-adv/send.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/batman-adv/send.c b/net/batman-adv/send.c index 3b4b2daa3b3e..570a8bce0364 100644 --- a/net/batman-adv/send.c +++ b/net/batman-adv/send.c | |||
@@ -190,13 +190,13 @@ out: | |||
190 | static void batadv_send_outstanding_bcast_packet(struct work_struct *work) | 190 | static void batadv_send_outstanding_bcast_packet(struct work_struct *work) |
191 | { | 191 | { |
192 | struct batadv_hard_iface *hard_iface; | 192 | struct batadv_hard_iface *hard_iface; |
193 | struct delayed_work *delayed_work = | 193 | struct delayed_work *delayed_work; |
194 | container_of(work, struct delayed_work, work); | ||
195 | struct batadv_forw_packet *forw_packet; | 194 | struct batadv_forw_packet *forw_packet; |
196 | struct sk_buff *skb1; | 195 | struct sk_buff *skb1; |
197 | struct net_device *soft_iface; | 196 | struct net_device *soft_iface; |
198 | struct batadv_priv *bat_priv; | 197 | struct batadv_priv *bat_priv; |
199 | 198 | ||
199 | delayed_work = container_of(work, struct delayed_work, work); | ||
200 | forw_packet = container_of(delayed_work, struct batadv_forw_packet, | 200 | forw_packet = container_of(delayed_work, struct batadv_forw_packet, |
201 | delayed_work); | 201 | delayed_work); |
202 | soft_iface = forw_packet->if_incoming->soft_iface; | 202 | soft_iface = forw_packet->if_incoming->soft_iface; |
@@ -239,11 +239,11 @@ out: | |||
239 | 239 | ||
240 | void batadv_send_outstanding_bat_ogm_packet(struct work_struct *work) | 240 | void batadv_send_outstanding_bat_ogm_packet(struct work_struct *work) |
241 | { | 241 | { |
242 | struct delayed_work *delayed_work = | 242 | struct delayed_work *delayed_work; |
243 | container_of(work, struct delayed_work, work); | ||
244 | struct batadv_forw_packet *forw_packet; | 243 | struct batadv_forw_packet *forw_packet; |
245 | struct batadv_priv *bat_priv; | 244 | struct batadv_priv *bat_priv; |
246 | 245 | ||
246 | delayed_work = container_of(work, struct delayed_work, work); | ||
247 | forw_packet = container_of(delayed_work, struct batadv_forw_packet, | 247 | forw_packet = container_of(delayed_work, struct batadv_forw_packet, |
248 | delayed_work); | 248 | delayed_work); |
249 | bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface); | 249 | bat_priv = netdev_priv(forw_packet->if_incoming->soft_iface); |