mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 07:50:04 +00:00
ARM: PL08x: prefix hex numbers with 0x
A driver which emits both decimal and hex numbers in its printk creates confusion as to what is what. Prefix hex numbers with 0x. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Acked-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
parent
b05cd8f4c0
commit
9c13299268
@ -199,8 +199,8 @@ static void pl08x_set_cregs(struct pl08x_driver_data *pl08x,
|
|||||||
;
|
;
|
||||||
|
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"WRITE channel %d: csrc=%08x, cdst=%08x, "
|
"WRITE channel %d: csrc=0x%08x, cdst=0x%08x, "
|
||||||
"cctl=%08x, clli=%08x, ccfg=%08x\n",
|
"cctl=0x%08x, clli=0x%08x, ccfg=0x%08x\n",
|
||||||
ch->id,
|
ch->id,
|
||||||
ch->csrc,
|
ch->csrc,
|
||||||
ch->cdst,
|
ch->cdst,
|
||||||
@ -731,7 +731,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
while (remainder) {
|
while (remainder) {
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"%s single byte LLIs for a transfer of "
|
"%s single byte LLIs for a transfer of "
|
||||||
"less than a bus width (remain %08x)\n",
|
"less than a bus width (remain 0x%08x)\n",
|
||||||
__func__, remainder);
|
__func__, remainder);
|
||||||
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
||||||
num_llis =
|
num_llis =
|
||||||
@ -747,7 +747,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
while ((mbus->addr) % (mbus->buswidth)) {
|
while ((mbus->addr) % (mbus->buswidth)) {
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"%s adjustment lli for less than bus width "
|
"%s adjustment lli for less than bus width "
|
||||||
"(remain %08x)\n",
|
"(remain 0x%08x)\n",
|
||||||
__func__, remainder);
|
__func__, remainder);
|
||||||
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
||||||
num_llis = pl08x_fill_lli_for_desc
|
num_llis = pl08x_fill_lli_for_desc
|
||||||
@ -865,7 +865,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
|
|
||||||
if (target_len != lli_len) {
|
if (target_len != lli_len) {
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"%s can't send what we want. Desired %08x, lli of %08x bytes in txd of %08x\n",
|
"%s can't send what we want. Desired 0x%08x, lli of 0x%08x bytes in txd of 0x%08x\n",
|
||||||
__func__, target_len, lli_len, txd->len);
|
__func__, target_len, lli_len, txd->len);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -875,7 +875,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
tsize);
|
tsize);
|
||||||
|
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"%s fill lli with single lli chunk of size %08x (remainder %08x)\n",
|
"%s fill lli with single lli chunk of size 0x%08x (remainder 0x%08x)\n",
|
||||||
__func__, lli_len, remainder);
|
__func__, lli_len, remainder);
|
||||||
num_llis = pl08x_fill_lli_for_desc(pl08x, txd,
|
num_llis = pl08x_fill_lli_for_desc(pl08x, txd,
|
||||||
num_llis, lli_len, cctl,
|
num_llis, lli_len, cctl,
|
||||||
@ -894,7 +894,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
&& (remainder); j++) {
|
&& (remainder); j++) {
|
||||||
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
cctl = pl08x_cctl_bits(cctl, 1, 1, 1);
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"%s align with boundary, single byte (remain %08x)\n",
|
"%s align with boundary, single byte (remain 0x%08x)\n",
|
||||||
__func__, remainder);
|
__func__, remainder);
|
||||||
num_llis =
|
num_llis =
|
||||||
pl08x_fill_lli_for_desc(pl08x,
|
pl08x_fill_lli_for_desc(pl08x,
|
||||||
@ -979,7 +979,7 @@ static int pl08x_fill_llis_for_desc(struct pl08x_driver_data *pl08x,
|
|||||||
|
|
||||||
for (i = 0; i < num_llis; i++) {
|
for (i = 0; i < num_llis; i++) {
|
||||||
dev_vdbg(&pl08x->adev->dev,
|
dev_vdbg(&pl08x->adev->dev,
|
||||||
"lli %d @%p: csrc=%08x, cdst=%08x, cctl=%08x, clli=%08x\n",
|
"lli %d @%p: csrc=0x%08x, cdst=0x%08x, cctl=0x%08x, clli=0x%08x\n",
|
||||||
i,
|
i,
|
||||||
&llis_va[i],
|
&llis_va[i],
|
||||||
llis_va[i].src,
|
llis_va[i].src,
|
||||||
@ -1289,7 +1289,7 @@ static void dma_set_runtime_config(struct dma_chan *chan,
|
|||||||
|
|
||||||
dev_dbg(&pl08x->adev->dev,
|
dev_dbg(&pl08x->adev->dev,
|
||||||
"configured channel %s (%s) for %s, data width %d, "
|
"configured channel %s (%s) for %s, data width %d, "
|
||||||
"maxburst %d words, LE, CCTL=%08x, CCFG=%08x\n",
|
"maxburst %d words, LE, CCTL=0x%08x, CCFG=0x%08x\n",
|
||||||
dma_chan_name(chan), plchan->name,
|
dma_chan_name(chan), plchan->name,
|
||||||
(config->direction == DMA_FROM_DEVICE) ? "RX" : "TX",
|
(config->direction == DMA_FROM_DEVICE) ? "RX" : "TX",
|
||||||
addr_width,
|
addr_width,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user