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

Commit 65b4bcb8 authored by Alan's avatar Alan Committed by Mark Brown
Browse files

ASoC: Intel: Skylake: fix pointer scaling



skl_tplg_tlv_control_set does pointer maths on data but forgets that data
is not uint8_t so the maths is already scaled in the pointer type.

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 92e963f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -950,7 +950,7 @@ static int skl_tplg_tlv_control_set(struct snd_kcontrol *kcontrol,
				return -EFAULT;
		} else {
			if (copy_from_user(ac->params,
					   data + 2 * sizeof(u32), size))
					   data + 2, size))
				return -EFAULT;
		}