summaryrefslogtreecommitdiff
path: root/sys/dev/pci/amdpm.c
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2006-03-08 09:58:45 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2006-03-08 09:58:45 +0000
commit7c58ec5d2fa82ef5959dfc1408f22d1b1f1a4ccc (patch)
treea4dfbacda3c15ddaa6f27e9a47f9ff6d9df737b3 /sys/dev/pci/amdpm.c
parentffe3d5088be596482f473b82a7de28ed9f7872ad (diff)
tweak the debug macros a bit
Diffstat (limited to 'sys/dev/pci/amdpm.c')
-rw-r--r--sys/dev/pci/amdpm.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/pci/amdpm.c b/sys/dev/pci/amdpm.c
index 7475d012a19..0dbe57de5d9 100644
--- a/sys/dev/pci/amdpm.c
+++ b/sys/dev/pci/amdpm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: amdpm.c,v 1.14 2006/03/08 09:21:14 dlg Exp $ */
+/* $OpenBSD: amdpm.c,v 1.15 2006/03/08 09:58:44 dlg Exp $ */
/*
* Copyright (c) 2006 Alexander Yurchenko <grange@openbsd.org>
@@ -75,9 +75,9 @@
#include <dev/i2c/i2cvar.h>
#ifdef AMDPM_DEBUG
-#define DPRINTF(x) printf x
+#define DPRINTF(x...) printf(x)
#else
-#define DPRINTF(x)
+#define DPRINTF(x...)
#endif
#define AMDPM_SMBUS_DELAY 100
@@ -325,8 +325,8 @@ amdpm_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
u_int16_t st, ctl, data;
int retries;
- DPRINTF(("%s: exec: op %d, addr 0x%x, cmdlen %d, len %d, flags 0x%x\n",
- sc->sc_dev.dv_xname, op, addr, cmdlen, len, flags));
+ DPRINTF("%s: exec: op %d, addr 0x%x, cmdlen %d, len %d, flags 0x%x\n",
+ sc->sc_dev.dv_xname, op, addr, cmdlen, len, flags);
/* Wait for bus to be idle */
for (retries = 100; retries > 0; retries--) {
@@ -335,8 +335,8 @@ amdpm_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
break;
DELAY(AMDPM_SMBUS_DELAY);
}
- DPRINTF(("%s: exec: st 0x%b\n", sc->sc_dev.dv_xname, st,
- AMDPM_SMBSTAT_BITS));
+ DPRINTF("%s: exec: st 0x%b\n", sc->sc_dev.dv_xname, st,
+ AMDPM_SMBSTAT_BITS);
if (st & AMDPM_SMBSTAT_BSY)
return (1);
@@ -449,8 +449,8 @@ amdpm_intr(void *arg)
/* Interrupt was not for us */
return (0);
- DPRINTF(("%s: intr: st 0x%b\n", sc->sc_dev.dv_xname, st,
- AMDPM_SMBSTAT_BITS));
+ DPRINTF("%s: intr: st 0x%b\n", sc->sc_dev.dv_xname, st,
+ AMDPM_SMBSTAT_BITS);
/* Clear status bits */
bus_space_write_2(sc->sc_iot, sc->sc_i2c_ioh, AMDPM_SMBSTAT, st);