Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/drm/bridge/imx.h
26282 views
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Copyright (C) 2012 Sascha Hauer, Pengutronix
4
*/
5
6
#ifndef DRM_IMX_BRIDGE_H
7
#define DRM_IMX_BRIDGE_H
8
9
struct device;
10
struct device_node;
11
struct drm_bridge;
12
13
struct drm_bridge *devm_imx_drm_legacy_bridge(struct device *dev,
14
struct device_node *np,
15
int type);
16
17
#endif
18
19