Skip to content

Commit

Permalink
staging: emxx_udc: Fix replace printk(KERN_DEBUG ..) with dev_dbg
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Ebru Akagunduz authored and Greg Kroah-Hartman committed Oct 2, 2014
1 parent 4571c4f commit fb71d24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions drivers/staging/emxx_udc/emxx_udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

}

Expand Down

0 comments on commit fb71d24

Please sign in to comment.