Commit 404d5b185b4eb56d6fa2f7bd27833f8df1c38ce4 changed the definition of dev_dbg in the !DEBUG case from being a #define to being a static inline. There was code in usb/host/ehci-ps3.c and ohci-ps3.c to do exactly that, which fails to compile now. This fixes it by removing the redefinition, as the redefinition is now superfluous.
Signed-off-by: Geoff Levand <[EMAIL PROTECTED]> --- Andrew, please apply. drivers/usb/host/ehci-ps3.c | 7 ------- drivers/usb/host/ohci-ps3.c | 8 -------- 2 files changed, 15 deletions(-) --- ps3-linux-dev.orig/drivers/usb/host/ehci-ps3.c +++ ps3-linux-dev/drivers/usb/host/ehci-ps3.c @@ -73,13 +73,6 @@ static const struct hc_driver ps3_ehci_h #endif }; -#if !defined(DEBUG) -#undef dev_dbg -static inline int __attribute__ ((format (printf, 2, 3))) dev_dbg( - const struct device *_dev, const char *fmt, ...) {return 0;} -#endif - - static int ps3_ehci_sb_probe(struct ps3_system_bus_device *dev) { int result; --- ps3-linux-dev.orig/drivers/usb/host/ohci-ps3.c +++ ps3-linux-dev/drivers/usb/host/ohci-ps3.c @@ -75,14 +75,6 @@ static const struct hc_driver ps3_ohci_h #endif }; -/* redefine dev_dbg to do a syntax check */ - -#if !defined(DEBUG) -#undef dev_dbg -static inline int __attribute__ ((format (printf, 2, 3))) dev_dbg( - const struct device *_dev, const char *fmt, ...) {return 0;} -#endif - static int ps3_ohci_sb_probe(struct ps3_system_bus_device *dev) { int result; -- ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ linux-usb-devel@lists.sourceforge.net To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel