> > + va_start(args, fmt); > > + ath6kl_printk(KERN_DEBUG, fmt, &args); > > Passing a va_list as an argument? > I believe this doesn't work. > I think you'll need to add and use: Passing a va_list certainly does work - vprintf() etc. What is problematical is taking the address of a va_list. The likely problem is a 'levels of indirection' one because, when va_list needs to be a struct (very likely when arguments are passed in registers), it is often declared as as array type. David -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html