1
0
Fork 0

[S390] Get rid of DBG macro.

Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
hifive-unleashed-5.1
Cornelia Huck 2006-09-20 15:59:47 +02:00 committed by Martin Schwidefsky
parent 6c2a9e6df6
commit 250b2dc833
1 changed files with 7 additions and 10 deletions

View File

@ -19,9 +19,6 @@
#include "s390mach.h" #include "s390mach.h"
#define DBG printk
// #define DBG(args,...) do {} while (0);
static struct semaphore m_sem; static struct semaphore m_sem;
extern int css_process_crw(int, int); extern int css_process_crw(int, int);
@ -83,11 +80,11 @@ repeat:
ccode = stcrw(&crw[chain]); ccode = stcrw(&crw[chain]);
if (ccode != 0) if (ccode != 0)
break; break;
DBG(KERN_DEBUG "crw_info : CRW reports slct=%d, oflw=%d, " printk(KERN_DEBUG "crw_info : CRW reports slct=%d, oflw=%d, "
"chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n", "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
crw[chain].slct, crw[chain].oflw, crw[chain].chn, crw[chain].slct, crw[chain].oflw, crw[chain].chn,
crw[chain].rsc, crw[chain].anc, crw[chain].erc, crw[chain].rsc, crw[chain].anc, crw[chain].erc,
crw[chain].rsid); crw[chain].rsid);
/* Check for overflows. */ /* Check for overflows. */
if (crw[chain].oflw) { if (crw[chain].oflw) {
pr_debug("%s: crw overflow detected!\n", __FUNCTION__); pr_debug("%s: crw overflow detected!\n", __FUNCTION__);
@ -117,8 +114,8 @@ repeat:
* reported to the common I/O layer. * reported to the common I/O layer.
*/ */
if (crw[chain].slct) { if (crw[chain].slct) {
DBG(KERN_INFO"solicited machine check for " pr_debug("solicited machine check for "
"channel path %02X\n", crw[0].rsid); "channel path %02X\n", crw[0].rsid);
break; break;
} }
switch (crw[0].erc) { switch (crw[0].erc) {