cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

drm_bridge_connector.h (548B)


      1/* SPDX-License-Identifier: GPL-2.0+ */
      2/*
      3 * Copyright (C) 2019 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      4 */
      5
      6#ifndef __DRM_BRIDGE_CONNECTOR_H__
      7#define __DRM_BRIDGE_CONNECTOR_H__
      8
      9struct drm_connector;
     10struct drm_device;
     11struct drm_encoder;
     12
     13void drm_bridge_connector_enable_hpd(struct drm_connector *connector);
     14void drm_bridge_connector_disable_hpd(struct drm_connector *connector);
     15struct drm_connector *drm_bridge_connector_init(struct drm_device *drm,
     16						struct drm_encoder *encoder);
     17
     18#endif /* __DRM_BRIDGE_CONNECTOR_H__ */