On Fri, Nov 13, 2015 at 09:03:56PM +0530, Nizam Haider wrote:
> Fix Checlpatch warning
> HECK: braces {} should be used on all arms of this statement
> 
> Signed-off-by: Nizam Haider <nij...@cdac.in>
> ---
>  drivers/staging/dgnc/dgnc_neo.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c
> index e980150..99b230f 100644
> --- a/drivers/staging/dgnc/dgnc_neo.c
> +++ b/drivers/staging/dgnc/dgnc_neo.c
> @@ -1108,9 +1108,10 @@ static void neo_copy_data_from_uart_to_queue(struct 
> channel_t *ch)
>        * On the other hand, if the UART IS in FIFO mode, then ask
>        * the UART to give us an approximation of data it has RX'ed.
>        */
> -     if (!(ch->ch_flags & CH_FIFO_ENABLED))
> +     if (!(ch->ch_flags & CH_FIFO_ENABLED)) {
>               total = 0;
> -     else {
> +     }
> +             else {

This should be:

diff --git a/drivers/staging/dgnc/dgnc_neo.c b/drivers/staging/dgnc/dgnc_neo.c
index e980150..67e2667 100644
--- a/drivers/staging/dgnc/dgnc_neo.c
+++ b/drivers/staging/dgnc/dgnc_neo.c
@@ -1108,9 +1108,9 @@ static void neo_copy_data_from_uart_to_queue(struct 
channel_t *ch)
         * On the other hand, if the UART IS in FIFO mode, then ask
         * the UART to give us an approximation of data it has RX'ed.
         */
-       if (!(ch->ch_flags & CH_FIFO_ENABLED))
+       if (!(ch->ch_flags & CH_FIFO_ENABLED)) {
                total = 0;
-       else {
+       } else {
                total = readb(&ch->ch_neo_uart->rfifo);
 
                /*

regards
sudip
_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to