diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 14:55:14 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-09 14:55:14 -0500 |
commit | a3a798c88a14b35e5d4ca30716dbc9eb9a1ddfe2 (patch) | |
tree | 393969a0f1405237483c8c29b904690f2bb90559 /drivers/acpi/osl.c | |
parent | efcb3cf7f00c3c424db012380a8a974c2676a3c8 (diff) | |
parent | d97c0defba25a959a990f6d4759f43075540832e (diff) |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6: (94 commits)
ACPICA: hide private headers
ACPICA: create acpica/ directory
ACPI: fix build warning
ACPI : Use RSDT instead of XSDT by adding boot option of "acpi=rsdt"
ACPI: Avoid array address overflow when _CST MWAIT hint bits are set
fujitsu-laptop: Simplify SBLL/SBL2 backlight handling
fujitsu-laptop: Add BL power, LED control and radio state information
ACPICA: delete utcache.c
ACPICA: delete acdisasm.h
ACPICA: Update version to 20081204.
ACPICA: FADT: Update error msgs for consistency
ACPICA: FADT: set acpi_gbl_use_default_register_widths to TRUE by default
ACPICA: FADT parsing changes and fixes
ACPICA: Add ACPI_MUTEX_TYPE configuration option
ACPICA: Fixes for various ACPI data tables
ACPICA: Restructure includes into public/private
ACPI: remove private acpica headers from driver files
ACPI: reboot.c: use new acpi_reset interface
ACPICA: New: acpi_reset interface - write to reset register
ACPICA: Move all public H/W interfaces to new hwxface
...
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r-- | drivers/acpi/osl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index c8111424dcb8..6729a4992f2b 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -726,7 +726,7 @@ static acpi_status __acpi_os_execute(acpi_execute_type type, | |||
726 | 726 | ||
727 | dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC); | 727 | dpc = kmalloc(sizeof(struct acpi_os_dpc), GFP_ATOMIC); |
728 | if (!dpc) | 728 | if (!dpc) |
729 | return_ACPI_STATUS(AE_NO_MEMORY); | 729 | return AE_NO_MEMORY; |
730 | 730 | ||
731 | dpc->function = function; | 731 | dpc->function = function; |
732 | dpc->context = context; | 732 | dpc->context = context; |
@@ -747,7 +747,7 @@ static acpi_status __acpi_os_execute(acpi_execute_type type, | |||
747 | status = AE_ERROR; | 747 | status = AE_ERROR; |
748 | kfree(dpc); | 748 | kfree(dpc); |
749 | } | 749 | } |
750 | return_ACPI_STATUS(status); | 750 | return status; |
751 | } | 751 | } |
752 | 752 | ||
753 | acpi_status acpi_os_execute(acpi_execute_type type, | 753 | acpi_status acpi_os_execute(acpi_execute_type type, |