mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
regmap: cache: Fix format specifier in dev_dbg
Fix format specifier in dev_dbg and suppress the following warning drivers/base/regmap/regcache.c: In function ‘regcache_sync_block_raw_flush’: drivers/base/regmap/regcache.c:593:2: warning: format ‘%d’ expects argument of type ‘int’, but argument 4 has type ‘size_t’ [-Wformat] Signed-off-by: Stratos Karafotis <stratosk@semaphore.gr> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
f52687afb8
commit
9659293c17
1 changed files with 1 additions and 1 deletions
|
@ -590,7 +590,7 @@ static int regcache_sync_block_raw_flush(struct regmap *map, const void **data,
|
|||
|
||||
count = cur - base;
|
||||
|
||||
dev_dbg(map->dev, "Writing %d bytes for %d registers from 0x%x-0x%x\n",
|
||||
dev_dbg(map->dev, "Writing %zu bytes for %d registers from 0x%x-0x%x\n",
|
||||
count * val_bytes, count, base, cur - 1);
|
||||
|
||||
map->cache_bypass = 1;
|
||||
|
|
Loading…
Reference in a new issue