Skip to content

Commit

Permalink
USB: idmouse.c: remove dbg() usage
Browse files Browse the repository at this point in the history
dbg() was a very old USB-specific macro that should no longer
be used. This patch removes it from being used in the driver
and uses dev_dbg() instead.

CC: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
CC: Sarah Sharp <sarah.a.sharp@linux.intel.com>
CC: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Greg Kroah-Hartman committed May 2, 2012
1 parent 0a3fd53 commit a341c6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/usb/misc/idmouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@ static int idmouse_create_image(struct usb_idmouse *dev)
return -EAGAIN;

/* should be IMGSIZE == 65040 */
dbg("read %d bytes fingerprint data", bytes_read);
dev_dbg(&dev->interface->dev, "read %d bytes fingerprint data\n",
bytes_read);
return result;
}

Expand Down

0 comments on commit a341c6b

Please sign in to comment.