sound/oss: Remove uncompilable DBG macro use

Most of it duplicates function tracing and one
of them has an uncompilable printf %P use.
Others have format/argument mismatches.

Remove unused DBG1 macro definition

Neaten uart401.c use of ok test around this
DBG macro removal.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
Joe Perches
2014-04-04 09:09:08 -07:00
committed by Takashi Iwai
parent 6ea0cae73d
commit 3af5d0524a
10 changed files with 2 additions and 67 deletions
+2 -9
View File
@@ -274,19 +274,12 @@ static int reset_uart401(uart401_devc * devc)
}
}
/* Flush input before enabling interrupts */
if (ok)
{
DEB(printk("Reset UART401 OK\n"));
}
uart401_input_loop(devc);
else
DDB(printk("Reset UART401 failed - No hardware detected.\n"));
if (ok)
uart401_input_loop(devc); /*
* Flush input before enabling interrupts
*/
return ok;
}