diff options
author | Dave Airlie <[email protected]> | 2020-12-21 11:04:47 +0200 |
---|---|---|
committer | Jani Nikula <[email protected]> | 2020-12-22 10:09:03 +0200 |
commit | d6933784e64969a13a61684f881f7c9ff9a96e72 (patch) | |
tree | e0cd6d249cc995571b92a1fdbd94e17773f01de4 | |
parent | 175c13d143017549a92706d4e2ec712d0649d505 (diff) |
drm/i915/display: fix misused comma
There is no need for a comma use here.
Reviewed-by: Ville Syrjälä <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Signed-off-by: Jani Nikula <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/gpu/drm/i915/display/intel_display.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c index 62e22d832cab..79d7479beed2 100644 --- a/drivers/gpu/drm/i915/display/intel_display.c +++ b/drivers/gpu/drm/i915/display/intel_display.c @@ -989,7 +989,8 @@ chv_find_best_dpll(const struct intel_limit *limit, * set to 2. If requires to support 200Mhz refclk, we need to * revisit this because n may not 1 anymore. */ - clock.n = 1, clock.m1 = 2; + clock.n = 1; + clock.m1 = 2; target *= 5; /* fast clock */ for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { |