Commit 22d5cbd2 authored by Stefan Binding's avatar Stefan Binding Committed by Takashi Iwai
Browse files

ALSA: hda: cs35l41: Save codec object inside component struct

parent e414b05e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -117,6 +117,7 @@ static int cs35l41_hda_bind(struct device *dev, struct device *master, void *mas
		return -EBUSY;

	comps->dev = dev;
	cs35l41->codec = comps->codec;
	strscpy(comps->name, dev_name(dev), sizeof(comps->name));
	comps->playback_hook = cs35l41_hda_playback_hook;

+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ struct cs35l41_hda {
	struct regmap *regmap;
	struct gpio_desc *reset_gpio;
	struct cs35l41_hw_cfg hw_cfg;
	struct hda_codec *codec;

	int irq;
	int index;
+1 −0
Original line number Diff line number Diff line
@@ -14,5 +14,6 @@
struct hda_component {
	struct device *dev;
	char name[HDA_MAX_NAME_SIZE];
	struct hda_codec *codec;
	void (*playback_hook)(struct device *dev, int action);
};
+1 −0
Original line number Diff line number Diff line
@@ -6654,6 +6654,7 @@ static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char
					      "%s-%s:00-cs35l41-hda.%d", bus, hid, i);
			if (!name)
				return;
			spec->comps[i].codec = cdc;
			component_match_add(dev, &spec->match, component_compare_dev_name, name);
		}
		ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);