diff options
author | Len Brown <len.brown@intel.com> | 2006-01-20 01:17:42 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2006-01-20 01:17:42 -0500 |
commit | 3c5c363826e435cf4d54d917202567e5b57cae5f (patch) | |
tree | bffa50897687062c61621f1765a64a779fc3383a /drivers/acpi | |
parent | 0af5853bccd263161df80c259d61fc71211c5ac3 (diff) |
[ACPI] delete message "**** SET: Misaligned resource pointer:"
This check, added in ACPICA 20051021, was overly paranoid.
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/resources/rsmisc.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/acpi/resources/rsmisc.c b/drivers/acpi/resources/rsmisc.c index e1b5aa2af9a..4a758bd4a5c 100644 --- a/drivers/acpi/resources/rsmisc.c +++ b/drivers/acpi/resources/rsmisc.c @@ -328,14 +328,6 @@ acpi_rs_convert_resource_to_aml(struct acpi_resource *resource, ACPI_FUNCTION_TRACE("rs_convert_resource_to_aml"); - /* Validate the Resource pointer, must be 32-bit aligned */ - - if (((acpi_native_uint) resource) & 0x3) { - acpi_os_printf - ("**** SET: Misaligned resource pointer: %p Type %2.2X Len %X\n", - resource, resource->type, resource->length); - } - /* * First table entry must be ACPI_RSC_INITxxx and must contain the * table length (# of table entries) |