From: Wolfram Sang Date: Wed, 13 May 2020 20:10:16 +0000 (+0200) Subject: drm/vblank: remove outdated and noisy output X-Git-Tag: v5.9-rc1~51^2~27^2~228 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b5850d6ec34cab53fade465a34e170a7065bb980;p=linux-block.git drm/vblank: remove outdated and noisy output The R-Car DU driver calls drm_vblank_init via some helper functions in probe(). From what I checked, most drivers do this as well. I have a config now where DU always stays in deferred_probe state because of a missing dependency. This means that every time I rebind another driver like MMC, the vblank init message is displayed again when the DU driver is retried. Because the message doesn't really carry a useful information, I suggest to simply drop it. Signed-off-by: Wolfram Sang Signed-off-by: Daniel Vetter Link: https://patchwork.freedesktop.org/patch/msgid/20200513201016.23047-1-wsa+renesas@sang-engineering.com --- diff --git a/drivers/gpu/drm/drm_vblank.c b/drivers/gpu/drm/drm_vblank.c index 758bf74e1cab..acb3c3f65b57 100644 --- a/drivers/gpu/drm/drm_vblank.c +++ b/drivers/gpu/drm/drm_vblank.c @@ -543,8 +543,6 @@ int drm_vblank_init(struct drm_device *dev, unsigned int num_crtcs) seqlock_init(&vblank->seqlock); } - DRM_INFO("Supports vblank timestamp caching Rev 2 (21.10.2013).\n"); - return 0; } EXPORT_SYMBOL(drm_vblank_init);