Linux Audio

Check our new training course

Loading...
Note: File does not exist in v4.6.
 1/* SPDX-License-Identifier: GPL-2.0 */
 2/*
 3 * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
 4 * Author: Tomi Valkeinen <tomi.valkeinen@ti.com>
 5 */
 6
 7#ifndef __TIDSS_ENCODER_H__
 8#define __TIDSS_ENCODER_H__
 9
10#include <drm/drm_encoder.h>
11
12struct tidss_device;
13
14int tidss_encoder_create(struct tidss_device *tidss,
15			 struct drm_bridge *next_bridge,
16			 u32 encoder_type, u32 possible_crtcs);
17
18#endif