11d27fb95a
The comment blocks at the beginning of each file have a one-line summary description of the file that includes the file name. While the description is useful, the file name only creates opportunities for mistakes (as seen in rcar_du_vsp.c) without any added value. Drop it. Reported-by: Biju Das <biju.das.jz@bp.renesas.com> Suggested-by: Geert Uytterhoeven <geert@linux-m68k.org> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
40 lines
997 B
C
40 lines
997 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* R-Car Display Unit Writeback Support
|
|
*
|
|
* Copyright (C) 2019 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#ifndef __RCAR_DU_WRITEBACK_H__
|
|
#define __RCAR_DU_WRITEBACK_H__
|
|
|
|
#include <drm/drm_plane.h>
|
|
|
|
struct rcar_du_crtc;
|
|
struct rcar_du_device;
|
|
struct vsp1_du_atomic_pipe_config;
|
|
|
|
#ifdef CONFIG_DRM_RCAR_WRITEBACK
|
|
int rcar_du_writeback_init(struct rcar_du_device *rcdu,
|
|
struct rcar_du_crtc *rcrtc);
|
|
void rcar_du_writeback_setup(struct rcar_du_crtc *rcrtc,
|
|
struct vsp1_du_writeback_config *cfg);
|
|
void rcar_du_writeback_complete(struct rcar_du_crtc *rcrtc);
|
|
#else
|
|
static inline int rcar_du_writeback_init(struct rcar_du_device *rcdu,
|
|
struct rcar_du_crtc *rcrtc)
|
|
{
|
|
return -ENXIO;
|
|
}
|
|
static inline void
|
|
rcar_du_writeback_setup(struct rcar_du_crtc *rcrtc,
|
|
struct vsp1_du_writeback_config *cfg)
|
|
{
|
|
}
|
|
static inline void rcar_du_writeback_complete(struct rcar_du_crtc *rcrtc)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
#endif /* __RCAR_DU_WRITEBACK_H__ */
|