dmaengine: at_hdmac: Remove unnecessary 0x prefixes before %pad
authorVinod Koul <vinod.koul@intel.com>
Fri, 3 Nov 2017 05:03:11 +0000 (10:33 +0530)
committerVinod Koul <vinod.koul@intel.com>
Wed, 8 Nov 2017 05:17:04 +0000 (10:47 +0530)
Since commit 3cab1e711297 ("lib/vsprintf: refactor duplicate code
to special_hex_number()") %pad doesn't need 0x prefix so drop that.

Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/at_hdmac_regs.h

index 7f58f06..ef3f227 100644 (file)
@@ -385,7 +385,7 @@ static void vdbg_dump_regs(struct at_dma_chan *atchan) {}
 static void atc_dump_lli(struct at_dma_chan *atchan, struct at_lli *lli)
 {
        dev_crit(chan2dev(&atchan->chan_common),
-                "  desc: s%pad d%pad ctrl0x%x:0x%x l0x%pad\n",
+                "desc: s%pad d%pad ctrl0x%x:0x%x l%pad\n",
                 &lli->saddr, &lli->daddr,
                 lli->ctrla, lli->ctrlb, &lli->dscr);
 }