mirror of
https://github.com/torvalds/linux.git
synced 2024-12-06 11:01:43 +00:00
57d8396504
Earlier there were no mode_valid() helper for crtc and tilcdc had a hack to over come this limitation. But now the mode_valid() helper is there (has been since v4.13), so it is about time to get rid of that hack. Signed-off-by: Jyri Sarha <jsarha@ti.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://patchwork.freedesktop.org/patch/msgid/ <5c4dcb5b1e7975bd2b7ca86f7addf219cd0f9a06.1564750248.git.jsarha@ti.com
15 lines
436 B
C
15 lines
436 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2015 Texas Instruments
|
|
* Author: Jyri Sarha <jsarha@ti.com>
|
|
*/
|
|
|
|
#ifndef __TILCDC_EXTERNAL_H__
|
|
#define __TILCDC_EXTERNAL_H__
|
|
|
|
int tilcdc_add_component_encoder(struct drm_device *dev);
|
|
int tilcdc_get_external_components(struct device *dev,
|
|
struct component_match **match);
|
|
int tilcdc_attach_external_device(struct drm_device *ddev);
|
|
#endif /* __TILCDC_SLAVE_H__ */
|