ACPICA: Remove ACPI_GET_OBJECT_TYPE macro

Remove all instances of this obsolete macro, since it is now a
simple reference to ->common.type. There were about 150 invocations
of the macro across 41 files. ACPICA BZ 755.

http://www.acpica.org/bugzilla/show_bug.cgi?id=755

Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
Bob Moore
2009-02-18 14:44:03 +08:00
committed by Len Brown
父節點 32c9ef994d
當前提交 3371c19c29
共有 38 個文件被更改,包括 158 次插入194 次删除

查看文件

@@ -473,7 +473,7 @@ char *acpi_ut_get_object_type_name(union acpi_operand_object *obj_desc)
return ("[NULL Object Descriptor]");
}
return (acpi_ut_get_type_name(ACPI_GET_OBJECT_TYPE(obj_desc)));
return (acpi_ut_get_type_name(obj_desc->common.type));
}
/*******************************************************************************