diff options
author | Takashi Iwai <tiwai@suse.de> | 2010-08-19 08:11:53 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-08-19 08:11:53 +0200 |
commit | 274714f55c023c683a6b2deedfb2209a9457f4ec (patch) | |
tree | 2ebab51203d1e503db425ba91d9322bf8e0e9787 /sound/pci | |
parent | 4d8ec5f3b65dd64fa785192dc7ab2807916a05b2 (diff) | |
download | op-kernel-dev-274714f55c023c683a6b2deedfb2209a9457f4ec.zip op-kernel-dev-274714f55c023c683a6b2deedfb2209a9457f4ec.tar.gz |
ALSA: hda - Fix build error with CONFIG_PROC_FS=n
hdmi_eld_update_pcm_info() must be always compiled in.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/hda_eld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/hda_eld.c b/sound/pci/hda/hda_eld.c index 803b298..26c3ade 100644 --- a/sound/pci/hda/hda_eld.c +++ b/sound/pci/hda/hda_eld.c @@ -596,6 +596,8 @@ void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld) } EXPORT_SYMBOL_HDA(snd_hda_eld_proc_free); +#endif /* CONFIG_PROC_FS */ + /* update PCM info based on ELD */ void hdmi_eld_update_pcm_info(struct hdmi_eld *eld, struct hda_pcm_stream *pcm, struct hda_pcm_stream *codec_pars) @@ -644,5 +646,3 @@ void hdmi_eld_update_pcm_info(struct hdmi_eld *eld, struct hda_pcm_stream *pcm, pcm->maxbps = min(pcm->maxbps, codec_pars->maxbps); } EXPORT_SYMBOL_HDA(hdmi_eld_update_pcm_info); - -#endif /* CONFIG_PROC_FS */ |