diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-08-18 13:21:04 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-07 10:00:14 -0800 |
commit | 34c65d82e02147331701c7795e3144d511adf4e9 (patch) | |
tree | 2f1a39cbea44efcc0ad0a7e04addded9db66e233 /include | |
parent | 338b67b0c1a97ca705023a8189cf41aa0828d294 (diff) | |
download | linux-3.10-34c65d82e02147331701c7795e3144d511adf4e9.tar.gz linux-3.10-34c65d82e02147331701c7795e3144d511adf4e9.tar.bz2 linux-3.10-34c65d82e02147331701c7795e3144d511adf4e9.zip |
USB: remove info() macro from usb.h
USB should not be having it's own printk macros, so remove info() and
use the system-wide standard of dev_info() wherever possible.
No one in the tree is using the macro, so it can now be removed.
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/usb.h b/include/linux/usb.h index 28f68f58779..85ee9be9361 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h @@ -1742,8 +1742,6 @@ extern void usb_unregister_notify(struct notifier_block *nb); #define err(format, arg...) printk(KERN_ERR KBUILD_MODNAME ": " \ format "\n" , ## arg) -#define info(format, arg...) printk(KERN_INFO KBUILD_MODNAME ": " \ - format "\n" , ## arg) #endif /* __KERNEL__ */ |