staging: media: atomisp: Match alignment with open parenthesis.
authorVarsha Rao <rvarsha016@gmail.com>
Thu, 9 Mar 2017 15:53:46 +0000 (21:23 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Mar 2017 16:51:11 +0000 (17:51 +0100)
This patch matches alignment with open parenthesis, removes extra space
before '||' operators and fixes the checkpatch issue.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/atomisp/i2c/gc2235.c
drivers/staging/media/atomisp/i2c/mt9m114.c
drivers/staging/media/atomisp/i2c/ov2722.c

index 38f6de13f8fdd67786ac8ce628976a978c824f9b..4d15e205ee38011cecd030311703b99ceb0f7ef4 100644 (file)
@@ -704,8 +704,8 @@ static int distance(struct gc2235_resolution *res, u32 w, u32 h)
                return -1;
        match   = abs(((w_ratio << 13) / h_ratio) - 8192);
 
-       if ((w_ratio < 8192) || (h_ratio < 8192)  ||
-               (match > LARGEST_ALLOWED_RATIO_MISMATCH))
+       if ((w_ratio < 8192) || (h_ratio < 8192) ||
+           (match > LARGEST_ALLOWED_RATIO_MISMATCH))
                return -1;
 
        return w_ratio + h_ratio;
index 9742293f0a80aa818d4c2b27675fa16c3c0c008b..1b79cdb27ce69be2493744ff870d5a35eb0fe86d 100644 (file)
@@ -620,8 +620,8 @@ static int distance(struct mt9m114_res_struct const *res, u32 w, u32 h)
                return -1;
        match   = abs(((w_ratio << 13) / h_ratio) - 8192);
 
-       if ((w_ratio < 8192) || (h_ratio < 8192)  ||
-               (match > LARGEST_ALLOWED_RATIO_MISMATCH))
+       if ((w_ratio < 8192) || (h_ratio < 8192) ||
+           (match > LARGEST_ALLOWED_RATIO_MISMATCH))
                return -1;
 
        return w_ratio + h_ratio;
index adf9766fbae1b0593dfa642aa330895799c92dc5..b7afadebdf89623a915e1cc5b11af58369f08528 100644 (file)
@@ -809,8 +809,8 @@ static int distance(struct ov2722_resolution *res, u32 w, u32 h)
                return -1;
        match   = abs(((w_ratio << 13) / h_ratio) - 8192);
 
-       if ((w_ratio < 8192) || (h_ratio < 8192)  ||
-               (match > LARGEST_ALLOWED_RATIO_MISMATCH))
+       if ((w_ratio < 8192) || (h_ratio < 8192) ||
+           (match > LARGEST_ALLOWED_RATIO_MISMATCH))
                return -1;
 
        return w_ratio + h_ratio;