Displaying 1 result from an estimated 1 matches for "config_acpi_button_module".
2010 Feb 17
0
[PATCH] nouveau: fix undefined reference to acpi_lid_open
...eturn connector_status_disconnected;
>  #endif
> -- 
You are fixing CONFIG_ACPI_BUTTON=m vs CONFIG_DRM_NOUVEAU=y compilation,
but breaking runtime behaviour of CONFIG_ACPI_BUTTON=m + CONFIG_DRM_NOUVEAU=m.
I think this code should be compiled when:
#if defined(CONFIG_ACPI_BUTTON) || (defined(CONFIG_ACPI_BUTTON_MODULE) && defined(CONFIG_DRM_NOUVEAU_MODULE))
Marcin