From: Otto W. <ott...@bl...> - 2001-06-15 19:28:49
|
I tried to set the debug option in the driver "aty128fb.c" but get this error: aty128fb.c: In function `aty128_reset_engine': aty128fb.c:655: parse error before `)' Source:------------------------------------------- ... #define DEBUG #ifdef DEBUG #define DBG(fmt, args...) printk(KERN_DEBUG "aty128fb: %s " fmt, __FUNCTION__, ## args); #else #define DBG(fmt, args...) #endif ... DBG("engine reset"); ^^^^^^^^^^^^^^^^^^^ here comes the error -------------------------------------------------- From the gcc manual this should be okay. I'm using kernel 2.4.3 and a Debian woody system. |