diff options
Diffstat (limited to 'drivers/acpi/acpica/exoparg6.c')
| -rw-r--r-- | drivers/acpi/acpica/exoparg6.c | 14 | 
1 files changed, 4 insertions, 10 deletions
diff --git a/drivers/acpi/acpica/exoparg6.c b/drivers/acpi/acpica/exoparg6.c index 4b50730cf9a..29e9e99f7fe 100644 --- a/drivers/acpi/acpica/exoparg6.c +++ b/drivers/acpi/acpica/exoparg6.c @@ -1,4 +1,3 @@ -  /******************************************************************************   *   * Module Name: exoparg6 - AML execution - opcodes with 6 arguments @@ -6,7 +5,7 @@   *****************************************************************************/  /* - * Copyright (C) 2000 - 2010, Intel Corp. + * Copyright (C) 2000 - 2014, Intel Corp.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -120,7 +119,6 @@ acpi_ex_do_match(u32 match_op,  		break;  	case MATCH_MEQ: -  		/*  		 * True if equal: (P[i] == M)  		 * Change to:     (M == P[i]) @@ -134,7 +132,6 @@ acpi_ex_do_match(u32 match_op,  		break;  	case MATCH_MLE: -  		/*  		 * True if less than or equal: (P[i] <= M) (P[i] not_greater than M)  		 * Change to:                  (M >= P[i]) (M not_less than P[i]) @@ -149,7 +146,6 @@ acpi_ex_do_match(u32 match_op,  		break;  	case MATCH_MLT: -  		/*  		 * True if less than: (P[i] < M)  		 * Change to:         (M > P[i]) @@ -163,7 +159,6 @@ acpi_ex_do_match(u32 match_op,  		break;  	case MATCH_MGE: -  		/*  		 * True if greater than or equal: (P[i] >= M) (P[i] not_less than M)  		 * Change to:                     (M <= P[i]) (M not_greater than P[i]) @@ -178,7 +173,6 @@ acpi_ex_do_match(u32 match_op,  		break;  	case MATCH_MGT: -  		/*  		 * True if greater than: (P[i] > M)  		 * Change to:            (M < P[i]) @@ -198,7 +192,7 @@ acpi_ex_do_match(u32 match_op,  		return (FALSE);  	} -	return logical_result; +	return (logical_result);  }  /******************************************************************************* @@ -269,7 +263,7 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state)  		 * and the next should be examined.  		 *  		 * Upon finding a match, the loop will terminate via "break" at -		 * the bottom.  If it terminates "normally", match_value will be +		 * the bottom. If it terminates "normally", match_value will be  		 * ACPI_UINT64_MAX (Ones) (its initial value) indicating that no  		 * match was found.  		 */ @@ -320,7 +314,7 @@ acpi_status acpi_ex_opcode_6A_0T_1R(struct acpi_walk_state * walk_state)  		goto cleanup;  	} -      cleanup: +cleanup:  	/* Delete return object on error */  | 
