include/drm/display/drm_hdmi_audio_helper.h

Source file repositories/reference/linux-study-clean/include/drm/display/drm_hdmi_audio_helper.h

File Facts

System
Linux kernel
Corpus path
include/drm/display/drm_hdmi_audio_helper.h
Extension
.h
Size
619 bytes
Lines
24
Domain
Repository Root And Misc
Bucket
include
Inferred role
Repository Root And Misc: implementation source
Status
source implementation candidate

Why This File Exists

Top-level or miscellaneous repository surface. Use this as map coverage unless a later manual pass promotes the file into a deeper subsystem dossier.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef DRM_DISPLAY_HDMI_AUDIO_HELPER_H_
#define DRM_DISPLAY_HDMI_AUDIO_HELPER_H_

#include <linux/types.h>

struct drm_connector;
struct drm_connector_hdmi_audio_funcs;

struct device;

int drm_connector_hdmi_audio_init(struct drm_connector *connector,
				  struct device *hdmi_codec_dev,
				  const struct drm_connector_hdmi_audio_funcs *funcs,
				  unsigned int max_i2s_playback_channels,
				  u64 i2s_formats,
				  bool spdif_playback,
				  int sound_dai_port);
void drm_connector_hdmi_audio_plugged_notify(struct drm_connector *connector,
					     bool plugged);

#endif

Annotation

Implementation Notes