projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4abb73
)
drm/i915: Add "missing" break to haswell_get_ddi_pll()
author
Ville Syrjälä
<
[email protected]
>
Tue, 1 Dec 2015 21:32:07 +0000
(23:32 +0200)
committer
Ville Syrjälä
<
[email protected]
>
Wed, 2 Dec 2015 09:24:13 +0000
(11:24 +0200)
While not technically needed on the last case in the switch statement,
the 'break' makes it look better IMO.
v2: Fixed a typo in the commit message (Paulo)
Signed-off-by: Ville Syrjälä <
[email protected]
>
Reviewed-by: Paulo Zanoni <
[email protected]
>
Link:
http://patchwork.freedesktop.org/patch/msgid/
[email protected]
drivers/gpu/drm/i915/intel_display.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/i915/intel_display.c
b/drivers/gpu/drm/i915/intel_display.c
index 9f8ab09eb4115bb535758732212b7c3d0c3d4e95..edc034dc38b213908a359ae49e71c9098892d7ae 100644
(file)
--- a/
drivers/gpu/drm/i915/intel_display.c
+++ b/
drivers/gpu/drm/i915/intel_display.c
@@
-9808,6
+9808,7
@@
static void haswell_get_ddi_pll(struct drm_i915_private *dev_priv,
break;
case PORT_CLK_SEL_SPLL:
pipe_config->shared_dpll = DPLL_ID_SPLL;
+ break;
}
}