mirror of
https://github.com/torvalds/linux.git
synced 2024-11-30 16:11:38 +00:00
apple_gmux: Fix ACPI video unregister
We were only calling acpi_video_unregister() if ACPI video support was built in, not if it was a module. Signed-off-by: Matthew Garrett <mjg@redhat.com>
This commit is contained in:
parent
96ff705638
commit
9f6f955ae4
@ -348,7 +348,7 @@ static int __devinit gmux_probe(struct pnp_dev *pnp,
|
||||
* Disable the other backlight choices.
|
||||
*/
|
||||
acpi_video_dmi_promote_vendor();
|
||||
#ifdef CONFIG_ACPI_VIDEO
|
||||
#if defined (CONFIG_ACPI_VIDEO) || defined (CONFIG_ACPI_VIDEO_MODULE)
|
||||
acpi_video_unregister();
|
||||
#endif
|
||||
apple_bl_unregister();
|
||||
@ -371,7 +371,7 @@ static void __devexit gmux_remove(struct pnp_dev *pnp)
|
||||
kfree(gmux_data);
|
||||
|
||||
acpi_video_dmi_demote_vendor();
|
||||
#ifdef CONFIG_ACPI_VIDEO
|
||||
#if defined (CONFIG_ACPI_VIDEO) || defined (CONFIG_ACPI_VIDEO_MODULE)
|
||||
acpi_video_register();
|
||||
#endif
|
||||
apple_bl_register();
|
||||
|
Loading…
Reference in New Issue
Block a user