mirror of https://gitee.com/openkylin/linux.git
staging: emxx_udc: Fix replace printk(KERN_DEBUG ..) with dev_dbg
This patch fixes "Prefer [subsystem eg: netdev]_dbg([subsystem]dev, ... then dev_dbg(dev, ... then pr_debug(... to printk(KERN_DEBUG" checkpatch.pl warning in emxx_udc.c Changes in v2: - Fixed dev_debug function call as dev_dbg Signed-off-by: Ebru Akagunduz <ebru.akagunduz@gmail.com> Reviewed-by: Josh Triplett <josh@joshtriplett.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4571c4f6f6
commit
fb71d24bdc
|
@ -121,23 +121,23 @@ static void _nbu2ss_dump_register(struct nbu2ss_udc *udc)
|
|||
|
||||
spin_unlock(&udc->lock);
|
||||
|
||||
printk(KERN_DEBUG "\n-USB REG-\n");
|
||||
dev_dbg(&udc->dev, "\n-USB REG-\n");
|
||||
for (i = 0x0 ; i < USB_BASE_SIZE ; i += 16) {
|
||||
reg_data = _nbu2ss_readl(
|
||||
(u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i));
|
||||
printk(KERN_DEBUG "USB%04x =%08x", i, (int)reg_data);
|
||||
dev_dbg(&udc->dev, "USB%04x =%08x", i, (int)reg_data);
|
||||
|
||||
reg_data = _nbu2ss_readl(
|
||||
(u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 4));
|
||||
printk(KERN_DEBUG " %08x", (int)reg_data);
|
||||
dev_dbg(&udc->dev, " %08x", (int)reg_data);
|
||||
|
||||
reg_data = _nbu2ss_readl(
|
||||
(u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 8));
|
||||
printk(KERN_DEBUG " %08x", (int)reg_data);
|
||||
dev_dbg(&udc->dev, " %08x", (int)reg_data);
|
||||
|
||||
reg_data = _nbu2ss_readl(
|
||||
(u32 *)IO_ADDRESS(USB_BASE_ADDRESS + i + 12));
|
||||
printk(KERN_DEBUG " %08x\n", (int)reg_data);
|
||||
dev_dbg(&udc->dev, " %08x\n", (int)reg_data);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue