Skip to content
Snippets Groups Projects
Commit ca2585af authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Fix missing static inline to beep dummy function


The commit 2308f4ad missed static inline
thus it resulted in multiple-definitions error at linking.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 37f7ec38
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment