]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
drm/tiny/bochs: Convert dev_err() to drm_err()
authorLeander Kieweg <kieweg.leander@gmail.com>
Mon, 18 Aug 2025 11:35:29 +0000 (13:35 +0200)
committerThomas Zimmermann <tzimmermann@suse.de>
Mon, 8 Sep 2025 12:50:35 +0000 (14:50 +0200)
The DRM subsystem has a set of preferred, prefixed logging functions
(drm_info, drm_warn, drm_err) which improve debuggability by including
the driver and function name in the log output.

As part of the ongoing effort to modernize logging calls,
convert a dev_err() call in the bochs hardware initialization
function to its drm_err() equivalent.

This work was suggested by the DRM TODO list.

Signed-off-by: Leander Kieweg <kieweg.leander@gmail.com>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250818113530.187440-1-kieweg.leander@gmail.com
drivers/gpu/drm/tiny/bochs.c

index 8d3b7c4fa6a49e18d4067a13aeb49e5f65d8ebfc..d2d5e9f1269f8f4f1a89adeabcccfc2e836bc861 100644 (file)
@@ -252,7 +252,7 @@ static int bochs_hw_init(struct bochs_device *bochs)
                }
                bochs->ioports = 1;
        } else {
-               dev_err(dev->dev, "I/O ports are not supported\n");
+               drm_err(dev, "I/O ports are not supported\n");
                return -EIO;
        }