Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7275fc4c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: gadget: ci13xx_udc: remove unused err() macro



I previously cleaned up the err() call usage in this driver, but it
really was calling this macro instead.  To remove future confusion, just
delete this unused macro now.

Ideally, the warn() and info() macros should also be removed, and the
"real" dev_warn() and dev_info() calls should be used instead.

Reported-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
Cc: Felipe Balbi <balbi@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3b923993
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -212,7 +212,6 @@ do { \
			   "[%s] " format "\n", __func__, ## args); \
			   "[%s] " format "\n", __func__, ## args); \
} while (0)
} while (0)


#define err(format, args...)    ci13xxx_printk(KERN_ERR, format, ## args)
#define warn(format, args...)   ci13xxx_printk(KERN_WARNING, format, ## args)
#define warn(format, args...)   ci13xxx_printk(KERN_WARNING, format, ## args)
#define info(format, args...)   ci13xxx_printk(KERN_INFO, format, ## args)
#define info(format, args...)   ci13xxx_printk(KERN_INFO, format, ## args)