3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-16 04:05:53 +00:00

24 lines
677 B
C
Raw Normal View History

2022-04-02 18:12:00 +05:00
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
*/
#ifndef _DP_AUX_H_
#define _DP_AUX_H_
#include "dp_catalog.h"
2022-09-13 23:14:27 +05:00
#include <drm/display/drm_dp_helper.h>
2022-04-02 18:12:00 +05:00
int dp_aux_register(struct drm_dp_aux *dp_aux);
void dp_aux_unregister(struct drm_dp_aux *dp_aux);
void dp_aux_isr(struct drm_dp_aux *dp_aux);
void dp_aux_init(struct drm_dp_aux *dp_aux);
void dp_aux_deinit(struct drm_dp_aux *dp_aux);
void dp_aux_reconfig(struct drm_dp_aux *dp_aux);
2022-09-13 23:14:27 +05:00
struct drm_dp_aux *dp_aux_get(struct device *dev, struct dp_catalog *catalog,
bool is_edp);
2022-04-02 18:12:00 +05:00
void dp_aux_put(struct drm_dp_aux *aux);
#endif /*__DP_AUX_H_*/