mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 17:23:55 +08:00
ASoC: intel: incorrect sizeof()
This should be sizeof(pos) instead of sizeof(&pos). Most likely they
are both 8 bytes though so it doesn't often make a difference in real
life.
Fixes: 2298124358
('ASoC: Intel: Add Haswell/Broadwell IPC')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
f9da9e434d
commit
31d632f955
@ -617,7 +617,7 @@ static void hsw_notification_work(struct work_struct *work)
|
||||
case IPC_POSITION_CHANGED:
|
||||
trace_ipc_notification("DSP stream position changed for",
|
||||
stream->reply.stream_hw_id);
|
||||
sst_dsp_inbox_read(hsw->dsp, pos, sizeof(&pos));
|
||||
sst_dsp_inbox_read(hsw->dsp, pos, sizeof(pos));
|
||||
|
||||
if (stream->notify_position)
|
||||
stream->notify_position(stream, stream->pdata);
|
||||
|
Loading…
Reference in New Issue
Block a user