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

Commit a32ea06a authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ASoC: update drivers to handle errors correctly"

parents 07692d57 3f7a83bc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ struct msm_audio_ion_private {
	bool smmu_enabled;
	bool audioheap_enabled;
	struct iommu_group *group;
	u32 domain_id;
	int32_t domain_id;
	struct iommu_domain *domain;
};

+1 −1
Original line number Diff line number Diff line
@@ -3048,7 +3048,7 @@ static ssize_t afe_debug_write(struct file *filp,
				goto afe_error;
			}

			if (param[1] < 0 || param[1] > 100) {
			if (param[1] > 100) {
				pr_err("%s: Error, volume shoud be 0 to 100 percentage param = %lu\n",
					__func__, param[1]);
				rc = -EINVAL;