Unverified Commit 7e010a04 authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: codecs: wsa88xx: Correct VI sense channel mask

Merge series from Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>:

VI sense port on WSA883x and WSA884x speaker takes only one channel, so
correct the mask.  At least this works during my tests on different
devices with both speakers.  With original mask (0x3) I get
noise/garbage.
parents 012a6efc 060fac20
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -568,7 +568,7 @@ static const struct sdw_port_config wsa883x_pconfig[WSA883X_MAX_SWR_PORTS] = {
	},
	[WSA883X_PORT_VISENSE] = {
		.num = WSA883X_PORT_VISENSE + 1,
		.ch_mask = 0x3,
		.ch_mask = 0x1,
	},
};

+1 −1
Original line number Diff line number Diff line
@@ -891,7 +891,7 @@ static const struct sdw_port_config wsa884x_pconfig[WSA884X_MAX_SWR_PORTS] = {
	},
	[WSA884X_PORT_VISENSE] = {
		.num = WSA884X_PORT_VISENSE + 1,
		.ch_mask = 0x3,
		.ch_mask = 0x1,
	},
	[WSA884X_PORT_CPS] = {
		.num = WSA884X_PORT_CPS + 1,