summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-10-04 21:19:19 +0200
committerWolfgang Denk <wd@denx.de>2011-10-04 21:19:19 +0200
commitf092f15d39d1a223b240eb83dc3f4c64a02a8ea6 (patch)
tree331b256fb756d9c199456003c3f07804bcbe8896 /common
parent7b8ffea2ac44097ed1c99ba70b8c6a4cf12ba0b4 (diff)
downloadtalos-obmc-uboot-f092f15d39d1a223b240eb83dc3f4c64a02a8ea6.tar.gz
talos-obmc-uboot-f092f15d39d1a223b240eb83dc3f4c64a02a8ea6.zip
Revert "GCC4.6: Convert various empty macros to inline functions"
This reverts commit 60ce53cf9f408d9ad721f8e7a87d6a564e6d5bac. The commit causes build breakage for a number of boards. This results from the fact that now the arguments of debug() actually get referenced (even if there is hope that the compiler will optimize away the debug() call). The obvious fix to that probem (change the code to always declare the referenced variables and data structures) increases the code size, and was this rejected. So it was decided to revert this commit until a better solution is found.
Diffstat (limited to 'common')
-rw-r--r--common/usb.c4
-rw-r--r--common/usb_storage.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/common/usb.c b/common/usb.c
index a5f9e9f5b0..a401c09198 100644
--- a/common/usb.c
+++ b/common/usb.c
@@ -63,7 +63,7 @@
#ifdef USB_DEBUG
#define USB_PRINTF(fmt, args...) printf(fmt , ##args)
#else
-static inline void USB_PRINTF(const char *fmt, ...) {}
+#define USB_PRINTF(fmt, args...)
#endif
#define USB_BUFSIZ 512
@@ -970,7 +970,7 @@ void usb_scan_devices(void)
#ifdef USB_HUB_DEBUG
#define USB_HUB_PRINTF(fmt, args...) printf(fmt , ##args)
#else
-static inline void USB_HUB_PRINTF(const char *fmt, ...) {}
+#define USB_HUB_PRINTF(fmt, args...)
#endif
diff --git a/common/usb_storage.c b/common/usb_storage.c
index 5c56918e26..16667f3948 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -63,7 +63,7 @@
#ifdef USB_STOR_DEBUG
#define USB_STOR_PRINTF(fmt, args...) printf(fmt , ##args)
#else
-static inline void USB_STOR_PRINTF(const char *fmt, ...) {}
+#define USB_STOR_PRINTF(fmt, args...)
#endif
#include <scsi.h>
OpenPOWER on IntegriCloud