summaryrefslogtreecommitdiffstats
path: root/sound/hda
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2024-03-26 12:19:11 +0100
committerTakashi Iwai <tiwai@suse.de>2024-03-26 12:19:11 +0100
commitb7e1e969c887c897947fdc3754fe9b0c24acb155 (patch)
treeb12669f0af593b6e9ec71f6a776faf3b7e96c082 /sound/hda
parentALSA: hda: cs35l56: Set the init_done flag before component_add() (diff)
parentALSA: firewire-lib: Avoid -Wflex-array-member-not-at-end warning (diff)
downloadlinux-b7e1e969c887c897947fdc3754fe9b0c24acb155.tar.xz
linux-b7e1e969c887c897947fdc3754fe9b0c24acb155.zip
Merge branch 'topic/sound-devel-6.10' into for-next
Diffstat (limited to 'sound/hda')
-rw-r--r--sound/hda/hdac_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/hda/hdac_device.c b/sound/hda/hdac_device.c
index 7f7b67fe1b65..068c16e52dff 100644
--- a/sound/hda/hdac_device.c
+++ b/sound/hda/hdac_device.c
@@ -612,7 +612,7 @@ EXPORT_SYMBOL_GPL(snd_hdac_power_up_pm);
int snd_hdac_keep_power_up(struct hdac_device *codec)
{
if (!atomic_inc_not_zero(&codec->in_pm)) {
- int ret = pm_runtime_get_if_active(&codec->dev, true);
+ int ret = pm_runtime_get_if_active(&codec->dev);
if (!ret)
return -1;
if (ret < 0)