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

Commit b5b457b3 authored by Lucas Stach's avatar Lucas Stach Committed by Philipp Zabel
Browse files

gpu: ipu-di: silence videomode logspam



Adapting the videomode to the hardware constraints is something that
can and must happen during normal operation and isn't something that
the user can avoid. So printing a warning each time it happens isn't
helpful.

Demote this message to the debug level.

Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent 867341b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -535,7 +535,7 @@ int ipu_di_adjust_videomode(struct ipu_di *di, struct videomode *mode)
		return -EINVAL;
		return -EINVAL;
	}
	}


	dev_warn(di->ipu->dev, "videomode adapted for IPU restrictions\n");
	dev_dbg(di->ipu->dev, "videomode adapted for IPU restrictions\n");
	return 0;
	return 0;
}
}
EXPORT_SYMBOL_GPL(ipu_di_adjust_videomode);
EXPORT_SYMBOL_GPL(ipu_di_adjust_videomode);