提交 0a9dee27 编写于 作者: A Akinobu Mita 提交者: Greg Kroah-Hartman

acpiphp: fix missing acpiphp_glue_exit()

acpiphp_glue_exit() needs to be called to unwind when no slots found.
(It fixes data corruption when reloading acpiphp driver with no such devices)
Signed-off-by: NAkinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: NKristen Carlson Accardi <kristen.c.accardi@intel.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 467c442f
...@@ -303,8 +303,10 @@ static int __init init_acpi(void) ...@@ -303,8 +303,10 @@ static int __init init_acpi(void)
/* read initial number of slots */ /* read initial number of slots */
if (!retval) { if (!retval) {
num_slots = acpiphp_get_num_slots(); num_slots = acpiphp_get_num_slots();
if (num_slots == 0) if (num_slots == 0) {
acpiphp_glue_exit();
retval = -ENODEV; retval = -ENODEV;
}
} }
return retval; return retval;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册