Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 2f75ab7f authored by Mark Brown's avatar Mark Brown
Browse files

Merge branch 'fix/compress' of...

Merge branch 'fix/compress' of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-compress
parents e5acfc7d 290df4d3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -944,7 +944,7 @@ static int soc_compr_copy(struct snd_compr_stream *cstream,
	struct snd_soc_platform *platform = rtd->platform;
	struct snd_soc_component *component;
	struct snd_soc_rtdcom_list *rtdcom;
	int ret = 0, __ret;
	int ret = 0;

	mutex_lock_nested(&rtd->pcm_mutex, rtd->pcm_subclass);

@@ -965,10 +965,10 @@ static int soc_compr_copy(struct snd_compr_stream *cstream,
		    !component->driver->compr_ops->copy)
			continue;

		__ret = component->driver->compr_ops->copy(cstream, buf, count);
		if (__ret < 0)
			ret = __ret;
		ret = component->driver->compr_ops->copy(cstream, buf, count);
		break;
	}

err:
	mutex_unlock(&rtd->pcm_mutex);
	return ret;