ACPI: fan: Fix more unbalanced code block
commit 934231de70
fixes an unbalanced
CONFIG_ACPI_PROCFS code block during module initialisation. This
patch fixes similar issue but for the module exit.
Signed-off-by: Luis Henriques <luis.henrix@gmail.com>
Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
c9ad8e062e
commit
0c827eebfc
|
@ -369,7 +369,9 @@ static void __exit acpi_fan_exit(void)
|
||||||
|
|
||||||
acpi_bus_unregister_driver(&acpi_fan_driver);
|
acpi_bus_unregister_driver(&acpi_fan_driver);
|
||||||
|
|
||||||
|
#ifdef CONFIG_ACPI_PROCFS
|
||||||
remove_proc_entry(ACPI_FAN_CLASS, acpi_root_dir);
|
remove_proc_entry(ACPI_FAN_CLASS, acpi_root_dir);
|
||||||
|
#endif
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue