iio: magnetometer: yas530: Move printk %*ph parameters out from stack
authorJakob Hauser <jahau@rocketmail.com>
Fri, 12 Aug 2022 21:54:12 +0000 (23:54 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 15 Aug 2022 21:30:03 +0000 (22:30 +0100)
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>
drivers/iio/magnetometer/yamaha-yas530.c

index 40cd6bb..beb48f3 100644 (file)
@@ -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) {