Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 33419
b: refs/heads/master
c: 7daef60
h: refs/heads/master
i:
  33417: 1c48174
  33415: 3cfef47
v: v3
  • Loading branch information
Randy Dunlap authored and Len Brown committed Aug 16, 2006
1 parent 704fe01 commit 6226b8a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b20d2aeb0ad322cbe7fd9120acae6118231b17a3
refs/heads/master: 7daef60721e03809c7e5f8aa8491df4190f6b56f
6 changes: 5 additions & 1 deletion trunk/drivers/acpi/bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include <linux/module.h>
#include <linux/init.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/sched.h>
#include <linux/pm.h>
Expand Down Expand Up @@ -738,7 +739,10 @@ static int __init acpi_init(void)
return -ENODEV;
}

firmware_register(&acpi_subsys);
result = firmware_register(&acpi_subsys);
if (result < 0)
printk(KERN_WARNING "%s: firmware_register error: %d\n",
__FUNCTION__, result);

result = acpi_bus_init();

Expand Down

0 comments on commit 6226b8a

Please sign in to comment.