aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2007-07-09 11:33:14 -0700
committerLen Brown <len.brown@intel.com>2007-07-22 00:54:24 -0400
commit4ebf83c8cf89ab13bc23e46b0fcb6178ca23b43c (patch)
treede78bbb0cef7714124fe83cca057f65693a44dcb /drivers
parentACPI: drivers/acpi/pci_link.c: lower printk severity (diff)
downloadlinux-dev-4ebf83c8cf89ab13bc23e46b0fcb6178ca23b43c.tar.xz
linux-dev-4ebf83c8cf89ab13bc23e46b0fcb6178ca23b43c.zip
ACPI: fix empty macros found by -Wextra
ACPI has a ton of macros which make a bunch of empty if's when configured in non-debug mode. [lenb: The code it complaines about is functionally correct, so this patch is just to make -Wextra happier] #define DBG() if(...) DBG(); next_c_statement which turns into if(...) ; next_c_statement Signed-off-by: Dave Jones <davej@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/acpi/glue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c
index 41427a41f620..4893e256e399 100644
--- a/drivers/acpi/glue.c
+++ b/drivers/acpi/glue.c
@@ -16,7 +16,7 @@
#if ACPI_GLUE_DEBUG
#define DBG(x...) printk(PREFIX x)
#else
-#define DBG(x...)
+#define DBG(x...) do { } while(0)
#endif
static LIST_HEAD(bus_type_list);
static DECLARE_RWSEM(bus_type_sem);