Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6869de38 authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Fix missing inline for dummy snd_hdac_set_codec_wakeup()



This seems overlooked.

Fixes: 98d8fc6c ('ALSA: hda - Move hda_i915.c from sound/pci/hda to sound/hda')
Cc: <stable@vger.kernel.org> # v4.2+
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 25adc137
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ int snd_hdac_i915_init(struct hdac_bus *bus);
int snd_hdac_i915_exit(struct hdac_bus *bus);
int snd_hdac_i915_register_notifier(const struct i915_audio_component_audio_ops *);
#else
static int snd_hdac_set_codec_wakeup(struct hdac_bus *bus, bool enable)
static inline int snd_hdac_set_codec_wakeup(struct hdac_bus *bus, bool enable)
{
	return 0;
}