mirror of https://gitee.com/openkylin/linux.git
staging: iio: adc: mxs-lradc: Change type in printf format string
Wrong type in printf format string, requires 'int' but the argument type is 'unsigned int' This was found using a static code analysis program called cppcheck Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
31a3dda648
commit
e257a16e68
|
@ -1008,7 +1008,7 @@ static ssize_t mxs_lradc_show_scale_available_ch(struct device *dev,
|
|||
int i, len = 0;
|
||||
|
||||
for (i = 0; i < ARRAY_SIZE(lradc->scale_avail[ch]); i++)
|
||||
len += sprintf(buf + len, "%d.%09u ",
|
||||
len += sprintf(buf + len, "%u.%09u ",
|
||||
lradc->scale_avail[ch][i].integer,
|
||||
lradc->scale_avail[ch][i].nano);
|
||||
|
||||
|
|
Loading…
Reference in New Issue