diff options
Diffstat (limited to 'drivers/acpi/acpica/dsutils.c')
| -rw-r--r-- | drivers/acpi/acpica/dsutils.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/acpi/acpica/dsutils.c b/drivers/acpi/acpica/dsutils.c index 4d8c992a51d..99778997c35 100644 --- a/drivers/acpi/acpica/dsutils.c +++ b/drivers/acpi/acpica/dsutils.c @@ -178,7 +178,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op,  	if (!op) {  		ACPI_ERROR((AE_INFO, "Null Op")); -		return_VALUE(TRUE); +		return_UINT8(TRUE);  	}  	/* @@ -210,7 +210,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op,  				  "At Method level, result of [%s] not used\n",  				  acpi_ps_get_opcode_name(op->common.  							  aml_opcode))); -		return_VALUE(FALSE); +		return_UINT8(FALSE);  	}  	/* Get info on the parent. The root_op is AML_SCOPE */ @@ -219,7 +219,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op,  	    acpi_ps_get_opcode_info(op->common.parent->common.aml_opcode);  	if (parent_info->class == AML_CLASS_UNKNOWN) {  		ACPI_ERROR((AE_INFO, "Unknown parent opcode Op=%p", op)); -		return_VALUE(FALSE); +		return_UINT8(FALSE);  	}  	/* @@ -307,7 +307,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op,  			  acpi_ps_get_opcode_name(op->common.parent->common.  						  aml_opcode), op)); -	return_VALUE(TRUE); +	return_UINT8(TRUE);        result_not_used:  	ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH, @@ -316,7 +316,7 @@ acpi_ds_is_result_used(union acpi_parse_object * op,  			  acpi_ps_get_opcode_name(op->common.parent->common.  						  aml_opcode), op)); -	return_VALUE(FALSE); +	return_UINT8(FALSE);  }  /*******************************************************************************  |