On Fri, Jun 5, 2009 at 6:21 AM, Uwe Hermannuwe@hermann-uwe.de wrote:
On Fri, Jun 05, 2009 at 01:19:34PM +0200, Carl-Daniel Hailfinger wrote:
printk_alert("%s Cannot find smbus bus operations", dev_path(dev)); die("");
Can we also make die() accept variable argument numbers so we can do this?
die("%s Cannot find smbus bus operations", dev_path(dev));
Or does this cause issues when die() is called very early (pre-RAM) or so?
that's why it doesn't take variable arguments. You can not guarantee that it will always work.
ron