Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e32d68c9 authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/gf119-/disp: fix debug output on update failure



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent c33ba689
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1250,7 +1250,7 @@ nvd0_disp_intr_error(struct nv50_disp_priv *priv, int chid)
		 chid, (mthd & 0x0000ffc), data, mthd, unkn);

	if (chid == 0) {
		switch (mthd) {
		switch (mthd & 0xffc) {
		case 0x0080:
			nv50_disp_mthd_chan(priv, NV_DBG_ERROR, chid - 0,
					    impl->mthd.core);
@@ -1260,7 +1260,7 @@ nvd0_disp_intr_error(struct nv50_disp_priv *priv, int chid)
		}
	} else
	if (chid <= 4) {
		switch (mthd) {
		switch (mthd & 0xffc) {
		case 0x0080:
			nv50_disp_mthd_chan(priv, NV_DBG_ERROR, chid - 1,
					    impl->mthd.base);
@@ -1270,7 +1270,7 @@ nvd0_disp_intr_error(struct nv50_disp_priv *priv, int chid)
		}
	} else
	if (chid <= 8) {
		switch (mthd) {
		switch (mthd & 0xffc) {
		case 0x0080:
			nv50_disp_mthd_chan(priv, NV_DBG_ERROR, chid - 5,
					    impl->mthd.ovly);