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.13 26 lines 857 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2012-2020, The Linux Foundation. All rights reserved. 4 */ 5 6#ifndef _DP_AUX_H_ 7#define _DP_AUX_H_ 8 9#include "dp_catalog.h" 10#include <drm/display/drm_dp_helper.h> 11 12int msm_dp_aux_register(struct drm_dp_aux *msm_dp_aux); 13void msm_dp_aux_unregister(struct drm_dp_aux *msm_dp_aux); 14irqreturn_t msm_dp_aux_isr(struct drm_dp_aux *msm_dp_aux); 15void msm_dp_aux_enable_xfers(struct drm_dp_aux *msm_dp_aux, bool enabled); 16void msm_dp_aux_init(struct drm_dp_aux *msm_dp_aux); 17void msm_dp_aux_deinit(struct drm_dp_aux *msm_dp_aux); 18void msm_dp_aux_reconfig(struct drm_dp_aux *msm_dp_aux); 19 20struct phy; 21struct drm_dp_aux *msm_dp_aux_get(struct device *dev, struct msm_dp_catalog *catalog, 22 struct phy *phy, 23 bool is_edp); 24void msm_dp_aux_put(struct drm_dp_aux *aux); 25 26#endif /*__DP_AUX_H_*/