Commit db1a4194 authored by Rahul Krishnan's avatar Rahul Krishnan Committed by Greg Kroah-Hartman

staging: Greybus: Remove unnecessary braces for single statement block

This patch fixes the following checkpath.pl warning
WARNING: braces {} are not necessary for single statement blocks
Signed-off-by: default avatarRahul Krishnan <mrahul.krishnan@gmail.com>
Reviewed-by: default avatarRui Miguel Silva <rmfrfs@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 46d567e6
...@@ -191,9 +191,8 @@ static int _gb_sdio_process_events(struct gb_sdio_host *host, u8 event) ...@@ -191,9 +191,8 @@ static int _gb_sdio_process_events(struct gb_sdio_host *host, u8 event)
state_changed = 1; state_changed = 1;
} }
if (event & GB_SDIO_WP) { if (event & GB_SDIO_WP)
host->read_only = true; host->read_only = true;
}
if (state_changed) { if (state_changed) {
dev_info(mmc_dev(host->mmc), "card %s now event\n", dev_info(mmc_dev(host->mmc), "card %s now event\n",
......
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