mirror of https://gitee.com/openkylin/linux.git
ACPICA: Several lint changes, no functional changes
Remove pointer cast warnings and fix for a debug printf. 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> Signed-off-by: Andi Kleen <ak@linux.intel.com>
This commit is contained in:
parent
d97b4358da
commit
b52437641e
|
@ -503,11 +503,11 @@ acpi_status acpi_ex_prep_field_value(struct acpi_create_field_info *info)
|
|||
*/
|
||||
second_desc = obj_desc->common.next_object;
|
||||
second_desc->extra.aml_start =
|
||||
((union acpi_parse_object *)(info->data_register_node))->
|
||||
named.data;
|
||||
ACPI_CAST_PTR(union acpi_parse_object,
|
||||
info->data_register_node)->named.data;
|
||||
second_desc->extra.aml_length =
|
||||
((union acpi_parse_object *)(info->data_register_node))->
|
||||
named.length;
|
||||
ACPI_CAST_PTR(union acpi_parse_object,
|
||||
info->data_register_node)->named.length;
|
||||
|
||||
break;
|
||||
|
||||
|
|
Loading…
Reference in New Issue