diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-02 00:33:30 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-02 00:33:30 -0400 |
commit | 4ed48e5e8b308299bfc4bbad6bb008743f40fa5c (patch) | |
tree | cef57dbf963e12153f42df99a07cfd3658a59b08 /drivers/usb/atm | |
parent | 4c2a47a287876c098b41e4244426deca68762afe (diff) |
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>
Diffstat (limited to 'drivers/usb/atm')
-rw-r--r-- | drivers/usb/atm/xusbatm.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/atm/xusbatm.c b/drivers/usb/atm/xusbatm.c index 48ee0c5ff282..14ec9f0c5924 100644 --- a/drivers/usb/atm/xusbatm.c +++ b/drivers/usb/atm/xusbatm.c | |||
@@ -187,8 +187,6 @@ static int __init xusbatm_init(void) | |||
187 | { | 187 | { |
188 | int i; | 188 | int i; |
189 | 189 | ||
190 | dbg("xusbatm_init"); | ||
191 | |||
192 | if (!num_vendor || | 190 | if (!num_vendor || |
193 | num_vendor != num_product || | 191 | num_vendor != num_product || |
194 | num_vendor != num_rx_endpoint || | 192 | num_vendor != num_rx_endpoint || |
@@ -221,8 +219,6 @@ module_init(xusbatm_init); | |||
221 | 219 | ||
222 | static void __exit xusbatm_exit(void) | 220 | static void __exit xusbatm_exit(void) |
223 | { | 221 | { |
224 | dbg("xusbatm_exit entered"); | ||
225 | |||
226 | usb_deregister(&xusbatm_usb_driver); | 222 | usb_deregister(&xusbatm_usb_driver); |
227 | } | 223 | } |
228 | module_exit(xusbatm_exit); | 224 | module_exit(xusbatm_exit); |