tidss_encoder.h 403 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
  4. * Author: Tomi Valkeinen <[email protected]>
  5. */
  6. #ifndef __TIDSS_ENCODER_H__
  7. #define __TIDSS_ENCODER_H__
  8. #include <drm/drm_encoder.h>
  9. struct tidss_device;
  10. struct drm_encoder *tidss_encoder_create(struct tidss_device *tidss,
  11. u32 encoder_type, u32 possible_crtcs);
  12. #endif