From: Joe Perches <joe@perches.com>
To: Justin Stitt <justinstitt@google.com>,
Jakub Kicinski <kubakici@wp.pl>, Kalle Valo <kvalo@kernel.org>,
"David S . Miller" <davem@davemloft.net>,
Eric Dumazet <edumazet@google.com>,
Paolo Abeni <pabeni@redhat.com>,
Matthias Brugger <matthias.bgg@gmail.com>
Cc: Nathan Chancellor <nathan@kernel.org>,
Nick Desaulniers <ndesaulniers@google.com>,
Tom Rix <trix@redhat.com>,
linux-wireless@vger.kernel.org, netdev@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org,
llvm@lists.linux.dev
Subject: Re: [PATCH] mediatek: mt7601u: fix clang -Wformat warning
Date: Thu, 14 Jul 2022 23:32:53 -0700 [thread overview]
Message-ID: <84e873c27f2426ce003e650004fe856bf72c634b.camel@perches.com> (raw)
In-Reply-To: <20220711212932.1501592-1-justinstitt@google.com>
On Mon, 2022-07-11 at 14:29 -0700, Justin Stitt wrote:
> When building with Clang we encounter this warning:
> > drivers/net/wireless/mediatek/mt7601u/debugfs.c:92:6: error: format
> > specifies type 'unsigned char' but the argument has type 'int'
> > [-Werror,-Wformat] dev->ee->reg.start + dev->ee->reg.num - 1);
>
> The format specifier used is `%hhu` which describes a u8. Both
> `dev->ee->reg.start` and `.num` are u8 as well. However, the expression
> as a whole is promoted to an int as you cannot get smaller-than-int from
> addition. Therefore, to fix the warning, use the promoted-to-type's
> format specifier -- in this case `%d`.
I think whenever a sizeof(unsigned type) that is less than sizeof(int) is
emitted with vsprintf, the preferred format specifier should be %u not %d.
> diff --git a/drivers/net/wireless/mediatek/mt7601u/debugfs.c b/drivers/net/wireless/mediatek/mt7601u/debugfs.c
[]
> @@ -88,7 +88,7 @@ mt7601u_eeprom_param_show(struct seq_file *file, void *data)
> dev->ee->rssi_offset[0], dev->ee->rssi_offset[1]);
> seq_printf(file, "Reference temp: %hhx\n", dev->ee->ref_temp);
> seq_printf(file, "LNA gain: %hhx\n", dev->ee->lna_gain);
> - seq_printf(file, "Reg channels: %hhu-%hhu\n", dev->ee->reg.start,
> + seq_printf(file, "Reg channels: %hhu-%d\n", dev->ee->reg.start,
> dev->ee->reg.start + dev->ee->reg.num - 1);
And this is not a promotion of an argument to int via varargs.
The arithmetic did the promotion.
I suggest s/%hh/%/ for all the uses here, not just this one.
checkpatch could do this somewhat automatically.
Of course any changes it suggests need human review.
$ ./scripts/checkpatch.pl -f drivers/net/wireless/mediatek/mt7601u/debugfs.c --show-types --types=unnecessary_modifier --fix-inplace
$ git diff --stat -p drivers/net/wireless/mediatek/mt7601u/debugfs.c
---
drivers/net/wireless/mediatek/mt7601u/debugfs.c | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/net/wireless/mediatek/mt7601u/debugfs.c b/drivers/net/wireless/mediatek/mt7601u/debugfs.c
index 20669eacb66ea..b7a6376e3352e 100644
--- a/drivers/net/wireless/mediatek/mt7601u/debugfs.c
+++ b/drivers/net/wireless/mediatek/mt7601u/debugfs.c
@@ -83,28 +83,28 @@ mt7601u_eeprom_param_show(struct seq_file *file, void *data)
struct tssi_data *td = &dev->ee->tssi_data;
int i;
- seq_printf(file, "RF freq offset: %hhx\n", dev->ee->rf_freq_off);
- seq_printf(file, "RSSI offset: %hhx %hhx\n",
+ seq_printf(file, "RF freq offset: %x\n", dev->ee->rf_freq_off);
+ seq_printf(file, "RSSI offset: %x %x\n",
dev->ee->rssi_offset[0], dev->ee->rssi_offset[1]);
- seq_printf(file, "Reference temp: %hhx\n", dev->ee->ref_temp);
- seq_printf(file, "LNA gain: %hhx\n", dev->ee->lna_gain);
- seq_printf(file, "Reg channels: %hhu-%hhu\n", dev->ee->reg.start,
+ seq_printf(file, "Reference temp: %x\n", dev->ee->ref_temp);
+ seq_printf(file, "LNA gain: %x\n", dev->ee->lna_gain);
+ seq_printf(file, "Reg channels: %u-%u\n", dev->ee->reg.start,
dev->ee->reg.start + dev->ee->reg.num - 1);
seq_puts(file, "Per rate power:\n");
for (i = 0; i < 2; i++)
- seq_printf(file, "\t raw:%02hhx bw20:%02hhx bw40:%02hhx\n",
+ seq_printf(file, "\t raw:%02x bw20:%02x bw40:%02x\n",
rp->cck[i].raw, rp->cck[i].bw20, rp->cck[i].bw40);
for (i = 0; i < 4; i++)
- seq_printf(file, "\t raw:%02hhx bw20:%02hhx bw40:%02hhx\n",
+ seq_printf(file, "\t raw:%02x bw20:%02x bw40:%02x\n",
rp->ofdm[i].raw, rp->ofdm[i].bw20, rp->ofdm[i].bw40);
for (i = 0; i < 4; i++)
- seq_printf(file, "\t raw:%02hhx bw20:%02hhx bw40:%02hhx\n",
+ seq_printf(file, "\t raw:%02x bw20:%02x bw40:%02x\n",
rp->ht[i].raw, rp->ht[i].bw20, rp->ht[i].bw40);
seq_puts(file, "Per channel power:\n");
for (i = 0; i < 7; i++)
- seq_printf(file, "\t tx_power ch%u:%02hhx ch%u:%02hhx\n",
+ seq_printf(file, "\t tx_power ch%u:%02x ch%u:%02x\n",
i * 2 + 1, dev->ee->chan_pwr[i * 2],
i * 2 + 2, dev->ee->chan_pwr[i * 2 + 1]);
@@ -112,8 +112,8 @@ mt7601u_eeprom_param_show(struct seq_file *file, void *data)
return 0;
seq_puts(file, "TSSI:\n");
- seq_printf(file, "\t slope:%02hhx\n", td->slope);
- seq_printf(file, "\t offset=%02hhx %02hhx %02hhx\n",
+ seq_printf(file, "\t slope:%02x\n", td->slope);
+ seq_printf(file, "\t offset=%02x %02x %02x\n",
td->offset[0], td->offset[1], td->offset[2]);
seq_printf(file, "\t delta_off:%08x\n", td->tx0_delta_offset);
next prev parent reply other threads:[~2022-07-15 6:33 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-11 21:29 Justin Stitt
2022-07-11 22:16 ` Jakub Kicinski
2022-07-15 6:32 ` Joe Perches [this message]
2022-07-16 0:08 ` Justin Stitt
2022-07-16 1:40 ` Joe Perches
2022-07-18 11:54 ` wifi: " Kalle Valo
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=84e873c27f2426ce003e650004fe856bf72c634b.camel@perches.com \
--to=joe@perches.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=justinstitt@google.com \
--cc=kubakici@wp.pl \
--cc=kvalo@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-wireless@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=matthias.bgg@gmail.com \
--cc=nathan@kernel.org \
--cc=ndesaulniers@google.com \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=trix@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®