Files
linux-nf/drivers/gpu/drm/pl111/pl111_nomadik.h
Eslam Khafagy a1542b8ca6 drm: pl111: replace dev_* print functions with drm_* variants
Update the PL111 CLCD driver to use DRM print macros drm_*() instead of
dev_*(). This change ensures consistency with DRM subsystem
logging conventions [1].

[1]
Link: https://docs.kernel.org/gpu/todo.html#convert-logging-to-drm-functions-with-drm-device-parameter

Signed-off-by: Eslam Khafagy <eslam.medhat1993@gmail.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
Link: https://patch.msgid.link/20251125193845.425416-1-eslam.medhat1993@gmail.com
2025-12-11 00:03:22 +01:00

20 lines
269 B
C

// SPDX-License-Identifier: GPL-2.0+
#ifndef PL111_NOMADIK_H
#define PL111_NOMADIK_H
#endif
struct device;
#ifdef CONFIG_ARCH_NOMADIK
void pl111_nomadik_init(struct drm_device *dev);
#else
static inline void pl111_nomadik_init(struct drm_device *dev)
{
}
#endif