diff options
author | Varsha Rao <rvarsha016@gmail.com> | 2017-02-27 13:03:45 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-06 11:17:05 +0300 |
commit | f0588efb5ab12210fb2018486c0f9a437ec485fc (patch) | |
tree | 887b4cd215e7793974db23ebca055b7477a0e7b8 /drivers/staging/sm750fb | |
parent | dad5980e313ec44f87f6306cc9186ed50cfecc8a (diff) | |
download | linux-f0588efb5ab12210fb2018486c0f9a437ec485fc.tar.xz |
staging: sm750fb: Add braces around if statement.
Added braces around if statement. This patch fixes the following
checkpatch issue:
CHECK: braces {} should be used on all arms of this statement
Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sm750fb')
-rw-r--r-- | drivers/staging/sm750fb/ddk750_chip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index 10cf7295dc6c..7948ca96459c 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -16,9 +16,9 @@ logical_chip_type_t sm750_get_chip_type(void) void sm750_set_chip_type(unsigned short devId, u8 revId) { - if (devId == 0x718) + if (devId == 0x718) { chip = SM718; - else if (devId == 0x750) { + } else if (devId == 0x750) { chip = SM750; /* SM750 and SM750LE are different in their revision ID only. */ if (revId == SM750LE_REVISION_ID) { |