diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-06-14 02:14:32 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-06-14 02:14:32 -0400 |
commit | ca2585afa013ec2cf99a48e46d6b82df2e240493 (patch) | |
tree | 0ad3e780055338a0576d19b6e3d159d5f7104ba8 /sound/pci/hda/hda_beep.h | |
parent | 37f7ec38ea5c31180461f82e895e13fdd549b595 (diff) |
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 <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_beep.h')
-rw-r--r-- | sound/pci/hda/hda_beep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_beep.h b/sound/pci/hda/hda_beep.h index 4967eabe774e..55f0647458c7 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) | |||
54 | { | 54 | { |
55 | return 0; | 55 | return 0; |
56 | } | 56 | } |
57 | void snd_hda_detach_beep_device(struct hda_codec *codec) | 57 | static inline void snd_hda_detach_beep_device(struct hda_codec *codec) |
58 | { | 58 | { |
59 | } | 59 | } |
60 | #endif | 60 | #endif |