From: Pan Xiuli Date: Wed, 15 Apr 2020 20:28:04 +0000 (-0500) Subject: ASoC: SOF: change type char to uint8_t in trace.h X-Git-Tag: v5.10.7~1331^2~131^2~174^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f480f804f27a3decd03682b707453963bb8b4162;p=platform%2Fkernel%2Flinux-rpi.git ASoC: SOF: change type char to uint8_t in trace.h Use uint8_t to replace char in packed ABI structs to have fixed length for struct. Signed-off-by: Pan Xiuli Signed-off-by: Pierre-Louis Bossart Reviewed-by: Kai Vehmanen Link: https://lore.kernel.org/r/20200415202816.934-13-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/include/sound/sof/trace.h b/include/sound/sof/trace.h index fda6e8f..8056f21 100644 --- a/include/sound/sof/trace.h +++ b/include/sound/sof/trace.h @@ -72,7 +72,7 @@ struct sof_ipc_dma_trace_posn { struct sof_ipc_panic_info { struct sof_ipc_hdr hdr; uint32_t code; /* SOF_IPC_PANIC_ */ - char filename[SOF_TRACE_FILENAME_SIZE]; + uint8_t filename[SOF_TRACE_FILENAME_SIZE]; uint32_t linenum; } __packed;