Skip to content

Commit 63082d0

Browse files
committed
Merge branch 'for-linus' into for-next
Pull 7.0 devel branch for developing further USB-audio fixes. Signed-off-by: Takashi Iwai <tiwai@suse.de>
2 parents a69f677 + 83307ae commit 63082d0

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

Documentation/sound/alsa-configuration.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2372,6 +2372,10 @@ quirk_flags
23722372
audible volume
23732373
* bit 25: ``mixer_capture_min_mute``
23742374
Similar to bit 24 but for capture streams
2375+
* bit 26: ``skip_iface_setup``
2376+
Skip the probe-time interface setup (usb_set_interface,
2377+
init_pitch, init_sample_rate); redundant with
2378+
snd_usb_endpoint_prepare() at stream-open time
23752379

23762380
This module supports multiple devices, autoprobe and hotplugging.
23772381

sound/hda/codecs/hdmi/tegrahdmi.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,7 @@ static const struct hda_device_id snd_hda_id_tegrahdmi[] = {
299299
HDA_CODEC_ID_MODEL(0x10de002f, "Tegra194 HDMI/DP2", MODEL_TEGRA),
300300
HDA_CODEC_ID_MODEL(0x10de0030, "Tegra194 HDMI/DP3", MODEL_TEGRA),
301301
HDA_CODEC_ID_MODEL(0x10de0031, "Tegra234 HDMI/DP", MODEL_TEGRA234),
302+
HDA_CODEC_ID_MODEL(0x10de0032, "Tegra238 HDMI/DP", MODEL_TEGRA234),
302303
HDA_CODEC_ID_MODEL(0x10de0033, "SoC 33 HDMI/DP", MODEL_TEGRA234),
303304
HDA_CODEC_ID_MODEL(0x10de0034, "Tegra264 HDMI/DP", MODEL_TEGRA234),
304305
HDA_CODEC_ID_MODEL(0x10de0035, "SoC 35 HDMI/DP", MODEL_TEGRA234),

sound/hda/codecs/senarytech.c

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
#include "hda_jack.h"
2020
#include "generic.h"
2121

22-
/* GPIO node ID */
23-
#define SENARY_GPIO_NODE 0x01
24-
2522
struct senary_spec {
2623
struct hda_gen_spec gen;
2724

@@ -123,11 +120,11 @@ static void senary_init_gpio_led(struct hda_codec *codec)
123120
unsigned int mask = spec->gpio_mute_led_mask | spec->gpio_mic_led_mask;
124121

125122
if (mask) {
126-
snd_hda_codec_write(codec, SENARY_GPIO_NODE, 0, AC_VERB_SET_GPIO_MASK,
123+
snd_hda_codec_write(codec, codec->core.afg, 0, AC_VERB_SET_GPIO_MASK,
127124
mask);
128-
snd_hda_codec_write(codec, SENARY_GPIO_NODE, 0, AC_VERB_SET_GPIO_DIRECTION,
125+
snd_hda_codec_write(codec, codec->core.afg, 0, AC_VERB_SET_GPIO_DIRECTION,
129126
mask);
130-
snd_hda_codec_write(codec, SENARY_GPIO_NODE, 0, AC_VERB_SET_GPIO_DATA,
127+
snd_hda_codec_write(codec, codec->core.afg, 0, AC_VERB_SET_GPIO_DATA,
131128
spec->gpio_led);
132129
}
133130
}

0 commit comments

Comments
 (0)