Put "||" operator on line 390 where it belongs, to have a proper
logical continuation

Signed-off-by: Jeffrey <jeffrey.br...@unisys.com>
---
 drivers/staging/unisys/visorchipset/parser.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/staging/unisys/visorchipset/parser.c 
b/drivers/staging/unisys/visorchipset/parser.c
index fa2a678..671aaaf 100644
--- a/drivers/staging/unisys/visorchipset/parser.c
+++ b/drivers/staging/unisys/visorchipset/parser.c
@@ -387,8 +387,8 @@ parser_param_get(struct parser_context_tag *ctx, char *nam, 
int namesize)
                                break;
                        }
                } else
-                   if (pscan[i] == ',' || pscan[i] == ';'
-                       || pscan[i] == '\0') {
+                   if (pscan[i] == ',' || pscan[i] == ';' ||
+                       pscan[i] == '\0') {
                        value_length = i;
                        break;
                }
-- 
1.7.1

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

Reply via email to