mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
ALSA: hda - Fix missing static inline to beep dummy function
The commit 2308f4add3
missed static inline
thus it resulted in multiple-definitions error at linking.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
37f7ec38ea
commit
ca2585afa0
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ static inline int snd_hda_attach_beep_device(struct hda_codec *codec, int nid)
|
||||||
{
|
{
|
||||||
return 0;
|
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
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue