Message ID | 20240502153234.1.I2052f01c8d209d9ae9c300b87c6e4f60bd3cc99e@changeid (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drm/connector: Add \n to message about demoting connector force-probes | expand |
On 5/2/2024 3:32 PM, Douglas Anderson wrote: > The debug print clearly lacks a \n at the end. Add it. > > Fixes: 8f86c82aba8b ("drm/connector: demote connector force-probes for non-master clients") > Signed-off-by: Douglas Anderson <dianders@chromium.org> > --- > > drivers/gpu/drm/drm_connector.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Abhinav Kumar <quic_abhinavk@quicinc.com>
On Thu, May 02, 2024 at 03:32:35PM -0700, Douglas Anderson wrote: > The debug print clearly lacks a \n at the end. Add it. > > Fixes: 8f86c82aba8b ("drm/connector: demote connector force-probes for non-master clients") > Signed-off-by: Douglas Anderson <dianders@chromium.org> > --- > > drivers/gpu/drm/drm_connector.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Simon Ser <contact@emersion.fr>
Hi, On Thu, May 2, 2024 at 3:33 PM Douglas Anderson <dianders@chromium.org> wrote: > > The debug print clearly lacks a \n at the end. Add it. > > Fixes: 8f86c82aba8b ("drm/connector: demote connector force-probes for non-master clients") > Signed-off-by: Douglas Anderson <dianders@chromium.org> > --- > > drivers/gpu/drm/drm_connector.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Pushed to drm-misc-fixes: 6897204ea3df drm/connector: Add \n to message about demoting connector force-probes
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c index b0516505f7ae..4d2df7f64dc5 100644 --- a/drivers/gpu/drm/drm_connector.c +++ b/drivers/gpu/drm/drm_connector.c @@ -2940,7 +2940,7 @@ int drm_mode_getconnector(struct drm_device *dev, void *data, dev->mode_config.max_width, dev->mode_config.max_height); else - drm_dbg_kms(dev, "User-space requested a forced probe on [CONNECTOR:%d:%s] but is not the DRM master, demoting to read-only probe", + drm_dbg_kms(dev, "User-space requested a forced probe on [CONNECTOR:%d:%s] but is not the DRM master, demoting to read-only probe\n", connector->base.id, connector->name); }
The debug print clearly lacks a \n at the end. Add it. Fixes: 8f86c82aba8b ("drm/connector: demote connector force-probes for non-master clients") Signed-off-by: Douglas Anderson <dianders@chromium.org> --- drivers/gpu/drm/drm_connector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)