From: Mark Hounschell Date: Fri, 23 May 2014 17:45:57 +0000 (-0400) Subject: staging: dgap: Simplify get_altpin and get_useintr functions X-Git-Tag: firefly_0821_release~176^2~3465^2~39^2~338 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0c24b2325598326cc7af3e93266ebe232c629fe4;p=firefly-linux-kernel-4.4.55.git staging: dgap: Simplify get_altpin and get_useintr functions Simplify dgap_config_get_useintr and dgap_config_get_altpin changing the case statement to an if statement. Signed-off-by: Mark Hounschell Tested-by: Mark Hounschell Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/dgap/dgap.c b/drivers/staging/dgap/dgap.c index f811cbf5332e..a89606e1fda9 100644 --- a/drivers/staging/dgap/dgap.c +++ b/drivers/staging/dgap/dgap.c @@ -7310,14 +7310,11 @@ static uint dgap_config_get_useintr(struct board_t *bd) return 0; for (p = bd->bd_config; p; p = p->next) { - switch (p->type) { - case INTRNODE: + if (p->type == INTRNODE) { /* * check for pcxr types. */ return p->u.useintr; - default: - break; } } @@ -7336,14 +7333,11 @@ static uint dgap_config_get_altpin(struct board_t *bd) return 0; for (p = bd->bd_config; p; p = p->next) { - switch (p->type) { - case ANODE: + if (p->type == ANODE) { /* * check for pcxr types. */ return p->u.altpin; - default: - break; } }