Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.15 16 lines 405 B view raw
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 13struct drm_connector *drm_bridge_connector_init(struct drm_device *drm, 14 struct drm_encoder *encoder); 15 16#endif /* __DRM_BRIDGE_CONNECTOR_H__ */