USB: xusbatm.c: remove dbg() usage
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. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4c2a47a287
commit
4ed48e5e8b
1 changed files with 0 additions and 4 deletions
|
@ -187,8 +187,6 @@ static int __init xusbatm_init(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
dbg("xusbatm_init");
|
|
||||||
|
|
||||||
if (!num_vendor ||
|
if (!num_vendor ||
|
||||||
num_vendor != num_product ||
|
num_vendor != num_product ||
|
||||||
num_vendor != num_rx_endpoint ||
|
num_vendor != num_rx_endpoint ||
|
||||||
|
@ -221,8 +219,6 @@ module_init(xusbatm_init);
|
||||||
|
|
||||||
static void __exit xusbatm_exit(void)
|
static void __exit xusbatm_exit(void)
|
||||||
{
|
{
|
||||||
dbg("xusbatm_exit entered");
|
|
||||||
|
|
||||||
usb_deregister(&xusbatm_usb_driver);
|
usb_deregister(&xusbatm_usb_driver);
|
||||||
}
|
}
|
||||||
module_exit(xusbatm_exit);
|
module_exit(xusbatm_exit);
|
||||||
|
|
Loading…
Reference in a new issue