Unverified Commit 9b9def51 authored by Alexander Martinz's avatar Alexander Martinz Committed by Mark Brown
Browse files

ASoC: codecs: tfa989x: fix register access comments

parent 9f27530a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -193,7 +193,7 @@ static int tfa9890_init(struct regmap *regmap)
{
	int ret;

	/* unhide keys to allow updating them */
	/* temporarily allow access to hidden registers */
	ret = regmap_write(regmap, TFA989X_HIDE_UNHIDE_KEY, 0x5a6b);
	if (ret)
		return ret;
@@ -203,7 +203,7 @@ static int tfa9890_init(struct regmap *regmap)
	if (ret)
		return ret;

	/* hide keys again */
	/* hide registers again */
	ret = regmap_write(regmap, TFA989X_HIDE_UNHIDE_KEY, 0x0000);
	if (ret)
		return ret;