Contributors: 11
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Jani Nikula |
64 |
41.03% |
3 |
15.00% |
Ville Syrjälä |
38 |
24.36% |
6 |
30.00% |
Jerome Anand |
20 |
12.82% |
2 |
10.00% |
Paulo Zanoni |
9 |
5.77% |
2 |
10.00% |
Ander Conselvan de Oliveira |
6 |
3.85% |
1 |
5.00% |
Pierre-Louis Bossart |
6 |
3.85% |
1 |
5.00% |
Takashi Iwai |
4 |
2.56% |
1 |
5.00% |
Imre Deak |
3 |
1.92% |
1 |
5.00% |
Jesse Barnes |
3 |
1.92% |
1 |
5.00% |
Chris Wilson |
2 |
1.28% |
1 |
5.00% |
Daniel Vetter |
1 |
0.64% |
1 |
5.00% |
Total |
156 |
|
20 |
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2019 Intel Corporation
*/
#ifndef __INTEL_LPE_AUDIO_H__
#define __INTEL_LPE_AUDIO_H__
#include <linux/types.h>
enum port;
enum transcoder;
struct drm_i915_private;
#ifdef I915
int intel_lpe_audio_init(struct drm_i915_private *dev_priv);
void intel_lpe_audio_teardown(struct drm_i915_private *dev_priv);
void intel_lpe_audio_irq_handler(struct drm_i915_private *dev_priv);
void intel_lpe_audio_notify(struct drm_i915_private *dev_priv,
enum transcoder cpu_transcoder, enum port port,
const void *eld, int ls_clock, bool dp_output);
#else
static inline int intel_lpe_audio_init(struct drm_i915_private *dev_priv)
{
return -ENODEV;
}
static inline void intel_lpe_audio_teardown(struct drm_i915_private *dev_priv)
{
}
static inline void intel_lpe_audio_irq_handler(struct drm_i915_private *dev_priv)
{
}
static inline void intel_lpe_audio_notify(struct drm_i915_private *dev_priv,
enum transcoder cpu_transcoder, enum port port,
const void *eld, int ls_clock, bool dp_output)
{
}
#endif
#endif /* __INTEL_LPE_AUDIO_H__ */