Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/drm/bridge/dw_dp.h
29269 views
1
/* SPDX-License-Identifier: GPL-2.0-or-later */
2
/*
3
* Copyright (c) 2025 Rockchip Electronics Co., Ltd.
4
*/
5
6
#ifndef __DW_DP__
7
#define __DW_DP__
8
9
#include <linux/device.h>
10
11
struct drm_encoder;
12
struct dw_dp;
13
14
struct dw_dp_plat_data {
15
u32 max_link_rate;
16
};
17
18
struct dw_dp *dw_dp_bind(struct device *dev, struct drm_encoder *encoder,
19
const struct dw_dp_plat_data *plat_data);
20
#endif /* __DW_DP__ */
21
22