summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm
diff options
context:
space:
mode:
authorKevin Brace <kevinbrace@gmx.com>2018-02-03 15:06:43 -0800
committerKevin Brace <kevinbrace@gmx.com>2018-02-03 15:06:43 -0800
commitee55444ee94a21b019c2e6610f4e5e3b3ddab9db (patch)
tree4f18abfe36b2a252a1cd33ca5137f4ca39f52125 /drivers/gpu/drm
parent398271737eb38c05be47d551d1976b85d202b083 (diff)
drm/openchrome: KM400 IGA1 display FIFO parameter comment fix
Signed-off-by: Kevin Brace <kevinbrace@gmx.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r--drivers/gpu/drm/openchrome/via_crtc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/gpu/drm/openchrome/via_crtc.c b/drivers/gpu/drm/openchrome/via_crtc.c
index 82101bce2c94..dde69f84d503 100644
--- a/drivers/gpu/drm/openchrome/via_crtc.c
+++ b/drivers/gpu/drm/openchrome/via_crtc.c
@@ -629,22 +629,22 @@ static void via_iga1_display_fifo_regs(struct drm_device *dev,
case PCI_DEVICE_ID_VIA_KM400:
if ((mode->hdisplay >= 1600) &&
(dev_priv->vram_type <= VIA_MEM_DDR_200)) {
- /* SR17[7:0] */
+ /* SR17[6:0] */
fifo_max_depth = 58;
- /* SR16[7], SR16[5:0] */
+ /* SR16[5:0] */
fifo_threshold = 24;
- /* SR18[7], SR18[5:0] */
+ /* SR18[5:0] */
fifo_high_threshold = 92;
} else {
- /* SR17[7:0] */
+ /* SR17[6:0] */
fifo_max_depth = 128;
- /* SR16[7], SR16[5:0] */
+ /* SR16[5:0] */
fifo_threshold = 112;
- /* SR18[7], SR18[5:0] */
+ /* SR18[5:0] */
fifo_high_threshold = 92;
}