Hi, all.
  I am porting a driver supported by TI to kernel 2.6.23. But
unfortunate get a compile error. It should be easy to fix, thought I
would rather to see the best way.
  The problem code is :
        "dev_dbg(rsz_device, __FUNCTION__ "L\n");"

  its compile error message is 
        "error: parse error before string constant"

Can anyone tell me how to fix it ? Thanks.


dev_dbg is define in device.h

#ifdef DEBUG
#define dev_dbg(dev, format, arg...)            \
        dev_printk(KERN_DEBUG , dev , format , ## arg)
#else
        ...

_______________________________________________
Davinci-linux-open-source mailing list
[email protected]
http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source

Reply via email to