Browse Source

Bluetooth: Simplify RFCOMM session state eval

Merge conditional test for BT_LISTEN session state into following
switch statement (which is functionally equivalent).

Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Tested-By: Alexander Holler <holler@ahsoftware.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Peter Hurley 11 years ago
parent
commit
4339c25afb
1 changed files with 2 additions and 3 deletions
  1. 2 3
      net/bluetooth/rfcomm/core.c

+ 2 - 3
net/bluetooth/rfcomm/core.c

@@ -1968,12 +1968,11 @@ static void rfcomm_process_sessions(void)
 			continue;
 			continue;
 		}
 		}
 
 
-		if (s->state == BT_LISTEN) {
+		switch (s->state) {
+		case BT_LISTEN:
 			rfcomm_accept_connection(s);
 			rfcomm_accept_connection(s);
 			continue;
 			continue;
-		}
 
 
-		switch (s->state) {
 		case BT_BOUND:
 		case BT_BOUND:
 			s = rfcomm_check_connection(s);
 			s = rfcomm_check_connection(s);
 			break;
 			break;