mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
iio: magnetometer: yas530: Move printk %*ph parameters out from stack
Use less stack by modifying %*ph parameters. While at it, in the function yas530_get_calibration_data(), the debug dump was extended to 16 elements as this is the size of the calibration data array of YAS530. Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com> Signed-off-by: Jakob Hauser <jahau@rocketmail.com> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Link: https://lore.kernel.org/r/93b50c20adb1b2acb4cddb1ab25755070edd7c07.1660337264.git.jahau@rocketmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
6e3bfa97c5
commit
bdef8dcfbb
@ -664,7 +664,7 @@ static int yas530_get_calibration_data(struct yas5xx *yas5xx)
|
||||
ret = regmap_bulk_read(yas5xx->map, YAS530_CAL, data, sizeof(data));
|
||||
if (ret)
|
||||
return ret;
|
||||
dev_dbg(yas5xx->dev, "calibration data: %*ph\n", 14, data);
|
||||
dev_dbg(yas5xx->dev, "calibration data: %16ph\n", data);
|
||||
|
||||
add_device_randomness(data, sizeof(data));
|
||||
yas5xx->version = data[15] & GENMASK(1, 0);
|
||||
@ -711,7 +711,7 @@ static int yas532_get_calibration_data(struct yas5xx *yas5xx)
|
||||
ret = regmap_bulk_read(yas5xx->map, YAS530_CAL, data, sizeof(data));
|
||||
if (ret)
|
||||
return ret;
|
||||
dev_dbg(yas5xx->dev, "calibration data: %*ph\n", 14, data);
|
||||
dev_dbg(yas5xx->dev, "calibration data: %14ph\n", data);
|
||||
|
||||
/* Sanity check, is this all zeroes? */
|
||||
if (memchr_inv(data, 0x00, 13) == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user