mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
V4L/DVB (3433): Fix printk type warning
- Fix printk type warning: drivers/media/dvb/b2c2/flexcop-pci.c:164: warning: format '%08x' expects type 'unsigned int', but argument 4 has type 'dma_addr_t' Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: Michael Krufky <mkrufky@m1k.net> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
3875818f83
commit
608268b2d3
1 changed files with 4 additions and 2 deletions
|
@ -161,8 +161,10 @@ static irqreturn_t flexcop_pci_isr(int irq, void *dev_id, struct pt_regs *regs)
|
||||||
fc->read_ibi_reg(fc,dma1_008).dma_0x8.dma_cur_addr << 2;
|
fc->read_ibi_reg(fc,dma1_008).dma_0x8.dma_cur_addr << 2;
|
||||||
u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0;
|
u32 cur_pos = cur_addr - fc_pci->dma[0].dma_addr0;
|
||||||
|
|
||||||
deb_irq("%u irq: %08x cur_addr: %08x: cur_pos: %08x, last_cur_pos: %08x ",
|
deb_irq("%u irq: %08x cur_addr: %llx: cur_pos: %08x, last_cur_pos: %08x ",
|
||||||
jiffies_to_usecs(jiffies - fc_pci->last_irq),v.raw,cur_addr,cur_pos,fc_pci->last_dma1_cur_pos);
|
jiffies_to_usecs(jiffies - fc_pci->last_irq),
|
||||||
|
v.raw, (unsigned long long)cur_addr, cur_pos,
|
||||||
|
fc_pci->last_dma1_cur_pos);
|
||||||
fc_pci->last_irq = jiffies;
|
fc_pci->last_irq = jiffies;
|
||||||
|
|
||||||
/* buffer end was reached, restarted from the beginning
|
/* buffer end was reached, restarted from the beginning
|
||||||
|
|
Loading…
Reference in a new issue