diff options
| author | Len Brown <len.brown@intel.com> | 2010-08-14 23:57:32 -0400 | 
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2010-08-14 23:57:32 -0400 | 
| commit | e8eb6228094bcf0c84d9aa32b6363e78da68e1f5 (patch) | |
| tree | faebb2559bb45ba452dd596744b214326ee8281e | |
| parent | ecd8ee0955a2f21914c2e2ffff82541211c5bd43 (diff) | |
| parent | 108029ff84fcad8f9199d2d2e2583ae2747d45a4 (diff) | |
| download | olio-linux-3.10-e8eb6228094bcf0c84d9aa32b6363e78da68e1f5.tar.xz olio-linux-3.10-e8eb6228094bcf0c84d9aa32b6363e78da68e1f5.zip  | |
Merge branch 'bugzilla-16422' into release
| -rw-r--r-- | drivers/acpi/glue.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/glue.c b/drivers/acpi/glue.c index 4af6301601e..78b0164c35b 100644 --- a/drivers/acpi/glue.c +++ b/drivers/acpi/glue.c @@ -100,7 +100,8 @@ do_acpi_find_child(acpi_handle handle, u32 lvl, void *context, void **rv)  	status = acpi_get_object_info(handle, &info);  	if (ACPI_SUCCESS(status)) { -		if (info->address == find->address) +		if ((info->address == find->address) +			&& (info->valid & ACPI_VALID_ADR))  			find->handle = handle;  		kfree(info);  	}  |