dect
/
linux-2.6
Archived
13
0
Fork 0

USB: remove err() macro

I thought this had been removed years ago.  All in-kernel users of this
call have now been cleaned up and converted over to use dev_err()
instead, which is the correct thing to do.  Now that there are no users,
the macro can be removed so no one else accidentally starts to use it.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Greg Kroah-Hartman 2012-04-25 14:55:16 -07:00
parent 8048926bb8
commit af4e1ee040
1 changed files with 0 additions and 3 deletions

View File

@ -1653,9 +1653,6 @@ do { \
} while (0)
#endif
#define err(format, arg...) \
printk(KERN_ERR KBUILD_MODNAME ": " format "\n", ##arg)
/* debugfs stuff */
extern struct dentry *usb_debug_root;