mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-18 02:46:06 +00:00
11696c5e89
Create vendor specific renesas directory and move renesas drivers to that directory. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Acked-by: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
32 lines
767 B
C
32 lines
767 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* R-Car DSI Encoder
|
|
*
|
|
* Copyright (C) 2022 Renesas Electronics Corporation
|
|
*
|
|
* Contact: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
|
|
*/
|
|
|
|
#ifndef __RCAR_MIPI_DSI_H__
|
|
#define __RCAR_MIPI_DSI_H__
|
|
|
|
struct drm_atomic_state;
|
|
struct drm_bridge;
|
|
|
|
#if IS_ENABLED(CONFIG_DRM_RCAR_MIPI_DSI)
|
|
void rcar_mipi_dsi_pclk_enable(struct drm_bridge *bridge,
|
|
struct drm_atomic_state *state);
|
|
void rcar_mipi_dsi_pclk_disable(struct drm_bridge *bridge);
|
|
#else
|
|
static inline void rcar_mipi_dsi_pclk_enable(struct drm_bridge *bridge,
|
|
struct drm_atomic_state *state)
|
|
{
|
|
}
|
|
|
|
static inline void rcar_mipi_dsi_pclk_disable(struct drm_bridge *bridge)
|
|
{
|
|
}
|
|
#endif /* CONFIG_DRM_RCAR_MIPI_DSI */
|
|
|
|
#endif /* __RCAR_MIPI_DSI_H__ */
|