From: Greg Kroah-Hartman Date: Mon, 18 Aug 2008 20:21:04 +0000 (-0700) Subject: USB: remove info() macro from usb.h X-Git-Tag: v2.6.29-rc1~182^2~29 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=34c65d82e02147331701c7795e3144d511adf4e9;p=safe%2Fjmp%2Flinux-2.6 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 --- diff --git a/include/linux/usb.h b/include/linux/usb.h index 28f68f5..85ee9be 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__ */