Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b41c7bfa authored by Stephen Boyd's avatar Stephen Boyd
Browse files

clk: cdce925: Fix printk size_t warning



drivers/clk/clk-cdce925.c:550: warning: format ‘%u’ expects type
‘unsigned int’, but argument 6 has type ‘size_t’

Cc: Mike Looijmans <mike.looijmans@topic.nl>
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent 7eaf8b9f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -547,7 +547,7 @@ static int cdce925_regmap_i2c_read(void *context,

	ret = i2c_transfer(i2c->adapter, xfer, 2);
	if (likely(ret == 2)) {
		dev_dbg(&i2c->dev, "%s(%zu, %u) %#x %#x\n", __func__,
		dev_dbg(&i2c->dev, "%s(%zu, %zu) %#x %#x\n", __func__,
				reg_size, val_size, reg_data[0], *((u8 *)val));
		return 0;
	} else if (ret < 0)