mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 08:44:02 -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
13 lines
243 B
C
13 lines
243 B
C
#include <linux/device.h>
|
|
#include "pl111_drm.h"
|
|
|
|
#ifndef PL111_VERSATILE_H
|
|
#define PL111_VERSATILE_H
|
|
|
|
struct device;
|
|
struct pl111_drm_dev_private;
|
|
|
|
int pl111_versatile_init(struct drm_device *dev, struct pl111_drm_dev_private *priv);
|
|
|
|
#endif
|