aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/memory
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <krzk@kernel.org>2020-07-24 20:23:14 +0200
committerKrzysztof Kozlowski <krzk@kernel.org>2020-07-27 11:13:33 +0200
commitbf8fba45983b0a44db0d5d208d2faab4164cc3bf (patch)
tree014f9c0832c09391142d752b1ad82af9635ca6fc /drivers/memory
parentmemory: bt1-l2-ctl: Add blank lines after declarations (diff)
downloadwireguard-linux-bf8fba45983b0a44db0d5d208d2faab4164cc3bf.tar.xz
wireguard-linux-bf8fba45983b0a44db0d5d208d2faab4164cc3bf.zip
memory: mvebu-devbus: Add missing braces to all arms of if statement
Add missing braces to all arms of if statement to align with coding convention. Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Diffstat (limited to 'drivers/memory')
-rw-r--r--drivers/memory/mvebu-devbus.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/memory/mvebu-devbus.c b/drivers/memory/mvebu-devbus.c
index 886aea587276..76efc653dc7e 100644
--- a/drivers/memory/mvebu-devbus.c
+++ b/drivers/memory/mvebu-devbus.c
@@ -124,11 +124,11 @@ static int devbus_get_timing_params(struct devbus *devbus,
* The bus width is encoded into the register as 0 for 8 bits,
* and 1 for 16 bits, so we do the necessary conversion here.
*/
- if (r->bus_width == 8)
+ if (r->bus_width == 8) {
r->bus_width = 0;
- else if (r->bus_width == 16)
+ } else if (r->bus_width == 16) {
r->bus_width = 1;
- else {
+ } else {
dev_err(devbus->dev, "invalid bus width %d\n", r->bus_width);
return -EINVAL;
}