[PATCH 2/2] pxamci: fix coding style for multi statement conditionals
Antonio Ospite
ospite at studenti.unina.it
Wed May 11 06:19:57 EDT 2011
Put parentheses around single-statement 'if' branches when the else
branch is not a single statement as suggested in
Documentation/CodingStyle Chapter 3.
Signed-off-by: Antonio Ospite <ospite at studenti.unina.it>
---
drivers/mmc/host/pxamci.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c
index 3a89fb2..fbdb21e 100644
--- a/drivers/mmc/host/pxamci.c
+++ b/drivers/mmc/host/pxamci.c
@@ -81,9 +81,9 @@ static inline void pxamci_init_ocr(struct pxamci_host *host)
{
host->vcc = regulator_get(mmc_dev(host->mmc), "vmmc");
- if (IS_ERR_OR_NULL(host->vcc))
+ if (IS_ERR_OR_NULL(host->vcc)) {
host->vcc = NULL;
- else {
+ } else {
host->mmc->ocr_avail = mmc_regulator_get_ocrmask(host->vcc);
if (host->pdata && host->pdata->ocr_mask)
dev_warn(mmc_dev(host->mmc),
--
1.7.5.1
More information about the linux-arm-kernel
mailing list