2020-06-04 08:52:12

by Xiaoming Ni

[permalink] [raw]
Subject: [PATCH] ASoC: max98390: fix build warning detected by -Wformat

Fix build warning:
sound/soc/codecs/max98390.c:781:3: warning: format '%ld' expects
argument of type 'long int', but argument 4 has type 'size_t {aka
const unsigned int}' [-Wformat=]

Signed-off-by: Xiaoming Ni <[email protected]>
---
sound/soc/codecs/max98390.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sound/soc/codecs/max98390.c b/sound/soc/codecs/max98390.c
index b9ce44d..884ee55 100644
--- a/sound/soc/codecs/max98390.c
+++ b/sound/soc/codecs/max98390.c
@@ -778,7 +778,7 @@ static int max98390_dsm_init(struct snd_soc_component *component)
}

dev_dbg(component->dev,
- "max98390: param fw size %ld\n",
+ "max98390: param fw size %zu\n",
fw->size);
dsm_param = (char *)fw->data;
dsm_param += MAX98390_DSM_PAYLOAD_OFFSET;
--
1.8.5.6


2020-06-04 11:08:41

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] ASoC: max98390: fix build warning detected by -Wformat

On Thu, Jun 04, 2020 at 04:49:34PM +0800, Xiaoming Ni wrote:
> Fix build warning:
> sound/soc/codecs/max98390.c:781:3: warning: format '%ld' expects
> argument of type 'long int', but argument 4 has type 'size_t {aka
> const unsigned int}' [-Wformat=]

Thanks but this was already fixed.


Attachments:
(No filename) (298.00 B)
signature.asc (499.00 B)
Download all attachments