Remove extraneous parentheses around the comparison
to silence this warning
Signed-off-by: Pratik Vishwakarma <Pratik.Vishwakarma@amd.com>
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
                if (v->interlace_output[k] == 1.0) {
                        v->v_ratio[k] = 2.0 * v->v_ratio[k];
                }
-               if ((v->underscan_output[k] == 1.0)) {
+               if (v->underscan_output[k] == 1.0) {
                        v->h_ratio[k] = v->h_ratio[k] * v->under_scan_factor;
                        v->v_ratio[k] = v->v_ratio[k] * v->under_scan_factor;
                }