dsmthdat.c (bf61c8840efe60fd8f91446860b63338fb424158) | dsmthdat.c (1d1ea1b723d9f239f736b8cf284327cbbf9d15d1) |
---|---|
1/******************************************************************************* 2 * 3 * Module Name: dsmthdat - control method arguments and local variables 4 * 5 ******************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2013, Intel Corp. --- 271 unchanged lines hidden (view full) --- 280 } 281 282 /* Return a pointer to the pseudo-node */ 283 284 *node = &walk_state->arguments[index]; 285 break; 286 287 default: | 1/******************************************************************************* 2 * 3 * Module Name: dsmthdat - control method arguments and local variables 4 * 5 ******************************************************************************/ 6 7/* 8 * Copyright (C) 2000 - 2013, Intel Corp. --- 271 unchanged lines hidden (view full) --- 280 } 281 282 /* Return a pointer to the pseudo-node */ 283 284 *node = &walk_state->arguments[index]; 285 break; 286 287 default: |
288 |
|
288 ACPI_ERROR((AE_INFO, "Type %u is invalid", type)); 289 return_ACPI_STATUS(AE_TYPE); 290 } 291 292 return_ACPI_STATUS(AE_OK); 293} 294 295/******************************************************************************* --- 127 unchanged lines hidden (view full) --- 423 424 ACPI_ERROR((AE_INFO, 425 "Uninitialized Arg[%u] at node %p", 426 index, node)); 427 428 return_ACPI_STATUS(AE_AML_UNINITIALIZED_ARG); 429 430 case ACPI_REFCLASS_LOCAL: | 289 ACPI_ERROR((AE_INFO, "Type %u is invalid", type)); 290 return_ACPI_STATUS(AE_TYPE); 291 } 292 293 return_ACPI_STATUS(AE_OK); 294} 295 296/******************************************************************************* --- 127 unchanged lines hidden (view full) --- 424 425 ACPI_ERROR((AE_INFO, 426 "Uninitialized Arg[%u] at node %p", 427 index, node)); 428 429 return_ACPI_STATUS(AE_AML_UNINITIALIZED_ARG); 430 431 case ACPI_REFCLASS_LOCAL: |
431 | |
432 /* 433 * No error message for this case, will be trapped again later to 434 * detect and ignore cases of Store(local_x,local_x) 435 */ 436 return_ACPI_STATUS(AE_AML_UNINITIALIZED_LOCAL); 437 438 default: 439 --- 275 unchanged lines hidden --- | 432 /* 433 * No error message for this case, will be trapped again later to 434 * detect and ignore cases of Store(local_x,local_x) 435 */ 436 return_ACPI_STATUS(AE_AML_UNINITIALIZED_LOCAL); 437 438 default: 439 --- 275 unchanged lines hidden --- |