Message ID | 20210712142943.23981-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 502213fd8fca00fe7ebaf9a147c5038c91738cb5 |
Delegated to: | Kalle Valo |
Headers | show |
Series | [v1,1/1] ray_cs: use %*ph to print small buffer | expand |
Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > Use %*ph format to print small buffer as hex string. > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Patch applied to wireless-drivers-next.git, thanks. 502213fd8fca ray_cs: use %*ph to print small buffer
On Sat, 2021-08-21 at 17:14 +0000, Kalle Valo wrote: > Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > > Use %*ph format to print small buffer as hex string. > > > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > > Patch applied to wireless-drivers-next.git, thanks. > > 502213fd8fca ray_cs: use %*ph to print small buffer > There's one more of these in the same file but it's in an #ifdef 0 block... --- drivers/net/wireless/ray_cs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c index 590bd974d94f4..849216fbb8363 100644 --- a/drivers/net/wireless/ray_cs.c +++ b/drivers/net/wireless/ray_cs.c @@ -2284,9 +2284,9 @@ static void untranslate(ray_dev_t *local, struct sk_buff *skb, int len) DUMP_PREFIX_NONE, 16, 1, skb->data, 64, true); printk(KERN_DEBUG - "type = %08x, xsap = %02x%02x%02x, org = %02x02x02x\n", + "type = %08x, xsap = %02x%02x%02x, org = %3phN\n", ntohs(type), psnap->dsap, psnap->ssap, psnap->ctrl, - psnap->org[0], psnap->org[1], psnap->org[2]); + psnap->org); printk(KERN_DEBUG "untranslate skb->data = %p\n", skb->data); } #endif
Joe Perches <joe@perches.com> writes: > On Sat, 2021-08-21 at 17:14 +0000, Kalle Valo wrote: >> Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: >> >> > Use %*ph format to print small buffer as hex string. >> > >> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> >> >> Patch applied to wireless-drivers-next.git, thanks. >> >> 502213fd8fca ray_cs: use %*ph to print small buffer >> > > There's one more of these in the same file but it's in an #ifdef 0 block... I would rather remove the whole ifdef 0 block, patches welcome.
On Sun, 2021-08-22 at 08:08 +0300, Kalle Valo wrote: > Joe Perches <joe@perches.com> writes: > > > On Sat, 2021-08-21 at 17:14 +0000, Kalle Valo wrote: > > > Andy Shevchenko <andriy.shevchenko@linux.intel.com> wrote: > > > > > > > Use %*ph format to print small buffer as hex string. > > > > > > > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> > > > > > > Patch applied to wireless-drivers-next.git, thanks. > > > > > > 502213fd8fca ray_cs: use %*ph to print small buffer > > > > > > > There's one more of these in the same file but it's in an #ifdef 0 block... > > I would rather remove the whole ifdef 0 block, patches welcome. > It'd probably take you about 20 seconds if you do it yourself. $ git grep -P -n '^\s*#\s*if\s+0\b' drivers/net/wireless/ray_cs.c drivers/net/wireless/ray_cs.c:637:#if 0 drivers/net/wireless/ray_cs.c:2281:#if 0 drivers/net/wireless/ray_cs.c:2341:#if 0 Rather a bit more time if you want to do the whole kernel... $ git grep -P -n '^\s*#\s*if\s+0\b' | wc -l 1558
diff --git a/drivers/net/wireless/ray_cs.c b/drivers/net/wireless/ray_cs.c index 590bd974d94f..de614ac60421 100644 --- a/drivers/net/wireless/ray_cs.c +++ b/drivers/net/wireless/ray_cs.c @@ -2424,9 +2424,7 @@ static void rx_authenticate(ray_dev_t *local, struct rcs __iomem *prcs, copy_from_rx_buff(local, buff, pkt_addr, rx_len & 0xff); /* if we are trying to get authenticated */ if (local->sparm.b4.a_network_type == ADHOC) { - pr_debug("ray_cs rx_auth var= %02x %02x %02x %02x %02x %02x\n", - msg->var[0], msg->var[1], msg->var[2], msg->var[3], - msg->var[4], msg->var[5]); + pr_debug("ray_cs rx_auth var= %6ph\n", msg->var); if (msg->var[2] == 1) { pr_debug("ray_cs Sending authentication response.\n"); if (!build_auth_frame
Use %*ph format to print small buffer as hex string. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/net/wireless/ray_cs.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)