diff options
author | Takashi Iwai <tiwai@suse.de> | 2024-03-26 12:19:11 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-03-26 12:19:11 +0100 |
commit | b7e1e969c887c897947fdc3754fe9b0c24acb155 (patch) | |
tree | b12669f0af593b6e9ec71f6a776faf3b7e96c082 /sound/hda | |
parent | ALSA: hda: cs35l56: Set the init_done flag before component_add() (diff) | |
parent | ALSA: firewire-lib: Avoid -Wflex-array-member-not-at-end warning (diff) | |
download | linux-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.c | 2 |
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) |