forked from Minki/linux
netrom: Reduce switch/case indent
Make the case labels the same indent as the switch. git diff -w shows code on same line as case moved to separate lines and a "/* Fallthrough */" comment added where appropriate. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fcb261f357
commit
c485538901
@ -257,9 +257,12 @@ static int __must_check nr_add_node(ax25_address *nr, const char *mnemonic,
|
|||||||
case 3:
|
case 3:
|
||||||
if (nr_node->routes[1].quality > nr_node->routes[0].quality) {
|
if (nr_node->routes[1].quality > nr_node->routes[0].quality) {
|
||||||
switch (nr_node->which) {
|
switch (nr_node->which) {
|
||||||
case 0: nr_node->which = 1; break;
|
case 0:
|
||||||
case 1: nr_node->which = 0; break;
|
nr_node->which = 1;
|
||||||
default: break;
|
break;
|
||||||
|
case 1:
|
||||||
|
nr_node->which = 0;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
nr_route = nr_node->routes[0];
|
nr_route = nr_node->routes[0];
|
||||||
nr_node->routes[0] = nr_node->routes[1];
|
nr_node->routes[0] = nr_node->routes[1];
|
||||||
@ -505,12 +508,13 @@ static int nr_dec_obs(void)
|
|||||||
s->count--;
|
s->count--;
|
||||||
|
|
||||||
switch (i) {
|
switch (i) {
|
||||||
case 0:
|
case 0:
|
||||||
s->routes[0] = s->routes[1];
|
s->routes[0] = s->routes[1];
|
||||||
case 1:
|
/* Fallthrough */
|
||||||
s->routes[1] = s->routes[2];
|
case 1:
|
||||||
case 2:
|
s->routes[1] = s->routes[2];
|
||||||
break;
|
case 2:
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user