From: Scott Matheina Date: Tue, 10 Jan 2017 02:23:26 +0000 (-0600) Subject: staging:sm750fb:ddk750_chip.c Adds braces to last arm of statement X-Git-Tag: v4.11-rc1~116^2~384 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=87f0f086c640c1f54d39a5276825b837c33cee64;p=karo-tx-linux.git staging:sm750fb:ddk750_chip.c Adds braces to last arm of statement Fixes absence of braces on last arm of statement, identified by checkpatch Signed-off-by: Scott Matheina Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index f59ce5c0867d..ec33f1ffa3e3 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -25,8 +25,9 @@ void sm750_set_chip_type(unsigned short devId, u8 revId) chip = SM750LE; pr_info("found sm750le\n"); } - } else + } else { chip = SM_UNKNOWN; + } } static unsigned int get_mxclk_freq(void)