diff options
author | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-27 19:53:50 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-04-27 19:53:50 -0400 |
commit | 0ad4991cae47c0d3ae93e1531ba5572d223d700c (patch) | |
tree | 65ef2e310b84c159b56630f36e2d9c75c3c9f9e6 /drivers/platform | |
parent | 2467d7b7037438f2d1fed826fc5217dddf4b37fb (diff) | |
parent | 8ee88d591154ad7d9d413ba150a1ddbb8c2bf198 (diff) |
Merge branch 'acpica'
* acpica: (33 commits)
ACPICA: Update version to 20130328
ACPICA: Add a lock to the internal object reference count mechanism
ACPICA: Fix a format string for 64-bit generation
ACPICA: Remove FORCE_DELETE option for global reference count mechanism
ACPICA: Improve error message for Index() operator
ACPICA: FADT: Remove extraneous warning for very large GPE registers
ACPICA: Fix a typo in a function header, no functional change
ACPICA: Fix a typo in an error message
ACPICA: Fix for some comments/headers
ACPICA: _OSI Support: handle any errors from acpi_os_acquire_mutex()
ACPICA: Predefine names: Add allowed argument types to master info table
ACPI: Set length even for TYPE_END_TAG acpi resource
ACPICA: Update version to 20130214
ACPICA: Object repair: Allow 0-length packages for variable-length packages
ACPICA: Disassembler: Add warnings for unresolved control methods
ACPICA: Return object repair: Add resource template repairs
ACPICA: Return object repair: Add string-to-unicode conversion
ACPICA: Split object conversion functions to a new file
ACPICA: Add mechanism for early object repairs on a per-name basis
ACPICA: Remove trailing comma in enum declarations
...
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/sony-laptop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index 14d4dced1def..d544e3aaf761 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c | |||
@@ -4121,7 +4121,7 @@ static int sony_pic_enable(struct acpi_device *device, | |||
4121 | resource->res3.data.irq.sharable = ACPI_SHARED; | 4121 | resource->res3.data.irq.sharable = ACPI_SHARED; |
4122 | 4122 | ||
4123 | resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG; | 4123 | resource->res4.type = ACPI_RESOURCE_TYPE_END_TAG; |
4124 | 4124 | resource->res4.length = sizeof(struct acpi_resource); | |
4125 | } | 4125 | } |
4126 | /* setup Type 2/3 resources */ | 4126 | /* setup Type 2/3 resources */ |
4127 | else { | 4127 | else { |
@@ -4140,6 +4140,7 @@ static int sony_pic_enable(struct acpi_device *device, | |||
4140 | resource->res2.data.irq.sharable = ACPI_SHARED; | 4140 | resource->res2.data.irq.sharable = ACPI_SHARED; |
4141 | 4141 | ||
4142 | resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG; | 4142 | resource->res3.type = ACPI_RESOURCE_TYPE_END_TAG; |
4143 | resource->res3.length = sizeof(struct acpi_resource); | ||
4143 | } | 4144 | } |
4144 | 4145 | ||
4145 | /* Attempt to set the resource */ | 4146 | /* Attempt to set the resource */ |