In nouveau_pm.c, in the function nouveau_pm_acpi_event(), there's no check for CONFIG_POWER_SUPPLY. If CONFIG_POWER_SUPPLY is set to either n or m, the power_supply_is_system_supplied() is 'missing' and there's a build error. One solution is to add an #ifdef CONFIG_POWER_SUPPLY along with the #ifdef CONFIG_ACPI before the function. -- Stratos Psomadakis <psomas at ece.ntua.gr> -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 262 bytes Desc: OpenPGP digital signature URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20110411/2f423cd6/attachment.pgp>
Le 11/04/2011 15:22, Stratos Psomadakis a ?crit :> In nouveau_pm.c, in the function nouveau_pm_acpi_event(), there's no > check for CONFIG_POWER_SUPPLY. > > If CONFIG_POWER_SUPPLY is set to either n or m, the > power_supply_is_system_supplied() is 'missing' and there's a build error. > > One solution is to add an #ifdef CONFIG_POWER_SUPPLY along with the > #ifdef CONFIG_ACPI before the function.Thanks, I'll send a patch for that tonight. Can I add a Reported-by: line with your name and email address?