mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
synced 2026-04-17 22:24:18 -04:00
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
20 lines
269 B
C
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
|