diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2012-10-25 12:07:18 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-10-25 13:55:11 -0400 |
commit | 1a61cfe3445218637f38b355c76fc3132865a0a6 (patch) | |
tree | c3378af914ed2795862d28fbe3da848f7b616d1f /drivers/base | |
parent | 8a2ceac6617a67d8a1ee4bd255743d577bde311a (diff) |
regmap: Fix printing of size_t variable
val_bytes is of 'size_t', so it should be printed as '%zu'.
Fixes the following build warning on x86:
drivers/base/regmap/regmap.c:872:4: warning: format '%d' expects argument of type 'int', but argument 5 has type 'size_t' [-Wformat]
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/regmap/regmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c index 96253cd949e9..336bedb04ba8 100644 --- a/drivers/base/regmap/regmap.c +++ b/drivers/base/regmap/regmap.c | |||
@@ -858,7 +858,7 @@ static int _regmap_raw_write(struct regmap *map, unsigned int reg, | |||
858 | 858 | ||
859 | /* If the write goes beyond the end of the window split it */ | 859 | /* If the write goes beyond the end of the window split it */ |
860 | while (val_num > win_residue) { | 860 | while (val_num > win_residue) { |
861 | dev_dbg(map->dev, "Writing window %d/%d\n", | 861 | dev_dbg(map->dev, "Writing window %d/%zu\n", |
862 | win_residue, val_len / map->format.val_bytes); | 862 | win_residue, val_len / map->format.val_bytes); |
863 | ret = _regmap_raw_write(map, reg, val, win_residue * | 863 | ret = _regmap_raw_write(map, reg, val, win_residue * |
864 | map->format.val_bytes); | 864 | map->format.val_bytes); |