diff options
author | Dan Williams <dcbw@redhat.com> | 2007-08-02 10:47:17 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:49:39 -0400 |
commit | 2950cd26308ced650cf7cc3199eae3eb27f9917f (patch) | |
tree | 3c5ee4d04c8a82b9f6eee3fdd79c9c402b83e674 | |
parent | 1443b6530d8db779082dc9fabbd894e2b551b101 (diff) |
[PATCH] libertas: clean up indentation in libertas_association_worker
Signed-off-by: Dan Williams <dcbw@redhat.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/libertas/assoc.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/drivers/net/wireless/libertas/assoc.c b/drivers/net/wireless/libertas/assoc.c index 307ebcb94b18..36586db3e1f7 100644 --- a/drivers/net/wireless/libertas/assoc.c +++ b/drivers/net/wireless/libertas/assoc.c | |||
@@ -556,7 +556,8 @@ void libertas_association_worker(struct work_struct *work) | |||
556 | if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) { | 556 | if (test_bit(ASSOC_FLAG_MODE, &assoc_req->flags)) { |
557 | ret = assoc_helper_mode(priv, assoc_req); | 557 | ret = assoc_helper_mode(priv, assoc_req); |
558 | if (ret) { | 558 | if (ret) { |
559 | lbs_deb_assoc("ASSOC(:%d) mode: ret = %d\n", __LINE__, ret); | 559 | lbs_deb_assoc("ASSOC(:%d) mode: ret = %d\n", |
560 | __LINE__, ret); | ||
560 | goto out; | 561 | goto out; |
561 | } | 562 | } |
562 | } | 563 | } |
@@ -574,7 +575,8 @@ lbs_deb_assoc("ASSOC(:%d) mode: ret = %d\n", __LINE__, ret); | |||
574 | || test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags)) { | 575 | || test_bit(ASSOC_FLAG_WEP_TX_KEYIDX, &assoc_req->flags)) { |
575 | ret = assoc_helper_wep_keys(priv, assoc_req); | 576 | ret = assoc_helper_wep_keys(priv, assoc_req); |
576 | if (ret) { | 577 | if (ret) { |
577 | lbs_deb_assoc("ASSOC(:%d) wep_keys: ret = %d\n", __LINE__, ret); | 578 | lbs_deb_assoc("ASSOC(:%d) wep_keys: ret = %d\n", |
579 | __LINE__, ret); | ||
578 | goto out; | 580 | goto out; |
579 | } | 581 | } |
580 | } | 582 | } |
@@ -582,7 +584,8 @@ lbs_deb_assoc("ASSOC(:%d) wep_keys: ret = %d\n", __LINE__, ret); | |||
582 | if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) { | 584 | if (test_bit(ASSOC_FLAG_SECINFO, &assoc_req->flags)) { |
583 | ret = assoc_helper_secinfo(priv, assoc_req); | 585 | ret = assoc_helper_secinfo(priv, assoc_req); |
584 | if (ret) { | 586 | if (ret) { |
585 | lbs_deb_assoc("ASSOC(:%d) secinfo: ret = %d\n", __LINE__, ret); | 587 | lbs_deb_assoc("ASSOC(:%d) secinfo: ret = %d\n", |
588 | __LINE__, ret); | ||
586 | goto out; | 589 | goto out; |
587 | } | 590 | } |
588 | } | 591 | } |
@@ -590,7 +593,8 @@ lbs_deb_assoc("ASSOC(:%d) secinfo: ret = %d\n", __LINE__, ret); | |||
590 | if (test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) { | 593 | if (test_bit(ASSOC_FLAG_WPA_IE, &assoc_req->flags)) { |
591 | ret = assoc_helper_wpa_ie(priv, assoc_req); | 594 | ret = assoc_helper_wpa_ie(priv, assoc_req); |
592 | if (ret) { | 595 | if (ret) { |
593 | lbs_deb_assoc("ASSOC(:%d) wpa_ie: ret = %d\n", __LINE__, ret); | 596 | lbs_deb_assoc("ASSOC(:%d) wpa_ie: ret = %d\n", |
597 | __LINE__, ret); | ||
594 | goto out; | 598 | goto out; |
595 | } | 599 | } |
596 | } | 600 | } |
@@ -599,7 +603,8 @@ lbs_deb_assoc("ASSOC(:%d) wpa_ie: ret = %d\n", __LINE__, ret); | |||
599 | || test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) { | 603 | || test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) { |
600 | ret = assoc_helper_wpa_keys(priv, assoc_req); | 604 | ret = assoc_helper_wpa_keys(priv, assoc_req); |
601 | if (ret) { | 605 | if (ret) { |
602 | lbs_deb_assoc("ASSOC(:%d) wpa_keys: ret = %d\n", __LINE__, ret); | 606 | lbs_deb_assoc("ASSOC(:%d) wpa_keys: ret = %d\n", |
607 | __LINE__, ret); | ||
603 | goto out; | 608 | goto out; |
604 | } | 609 | } |
605 | } | 610 | } |