From: Takashi Iwai Date: Tue, 14 Jun 2011 06:14:32 +0000 (+0200) Subject: ALSA: hda - Fix missing static inline to beep dummy function X-Git-Tag: v3.0~56^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca2585afa013ec2cf99a48e46d6b82df2e240493;p=platform%2Fkernel%2Flinux-amlogic.git ALSA: hda - Fix missing static inline to beep dummy function The commit 2308f4add3de9f6c9c9f02e49461e94d84bb200a missed static inline thus it resulted in multiple-definitions error at linking. Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/hda_beep.h b/sound/pci/hda/hda_beep.h index 4967eab..55f0647 100644 --- a/sound/pci/hda/hda_beep.h +++ b/sound/pci/hda/hda_beep.h @@ -54,7 +54,7 @@ static inline int snd_hda_attach_beep_device(struct hda_codec *codec, int nid) { return 0; } -void snd_hda_detach_beep_device(struct hda_codec *codec) +static inline void snd_hda_detach_beep_device(struct hda_codec *codec) { } #endif