Commit f259e47a authored by Dafna Hirschfeld's avatar Dafna Hirschfeld Committed by Greg Kroah-Hartman

staging: mt7621-mmc: remove unnecessary braces from 'if' statements

Remove unnecessary braces from one line 'if' statements.
Issues found with checkpatch.pl
Signed-off-by: default avatarDafna Hirschfeld <dafna3@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1c4ccab0
...@@ -520,9 +520,8 @@ static void msdc_pm(pm_message_t state, void *data) ...@@ -520,9 +520,8 @@ static void msdc_pm(pm_message_t state, void *data)
host->pm_state = state; /* default PMSG_RESUME */ host->pm_state = state; /* default PMSG_RESUME */
} else if (evt == PM_EVENT_RESUME || evt == PM_EVENT_USER_RESUME) { } else if (evt == PM_EVENT_RESUME || evt == PM_EVENT_USER_RESUME) {
if (!host->suspend) { if (!host->suspend)
return; return;
}
/* No PM resume when USR suspend */ /* No PM resume when USR suspend */
if (evt == PM_EVENT_RESUME && host->pm_state.event == PM_EVENT_USER_SUSPEND) { if (evt == PM_EVENT_RESUME && host->pm_state.event == PM_EVENT_USER_SUSPEND) {
...@@ -967,17 +966,15 @@ static int msdc_do_request(struct mmc_host *mmc, struct mmc_request *mrq) ...@@ -967,17 +966,15 @@ static int msdc_do_request(struct mmc_host *mmc, struct mmc_request *mrq)
//if(host->id==1) { //if(host->id==1) {
if (send_type == SND_CMD) { if (send_type == SND_CMD) {
if (cmd->opcode == MMC_SEND_STATUS) { if (cmd->opcode == MMC_SEND_STATUS) {
if ((cmd->resp[0] & CARD_READY_FOR_DATA) || (CARD_CURRENT_STATE(cmd->resp[0]) != 7)) { if ((cmd->resp[0] & CARD_READY_FOR_DATA) || (CARD_CURRENT_STATE(cmd->resp[0]) != 7))
msdc_gate_clock(host->id); msdc_gate_clock(host->id);
}
} else { } else {
msdc_gate_clock(host->id); msdc_gate_clock(host->id);
} }
} else { } else {
if (read) { if (read)
msdc_gate_clock(host->id); msdc_gate_clock(host->id);
} }
}
//} //}
#else #else
msdc_gate_clock(host->id); msdc_gate_clock(host->id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment