diff options
Diffstat (limited to 'drivers/acpi/hardware/hwgpe.c')
-rw-r--r-- | drivers/acpi/hardware/hwgpe.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/acpi/hardware/hwgpe.c b/drivers/acpi/hardware/hwgpe.c index 8daeabb2fc7a..3536bbb990c3 100644 --- a/drivers/acpi/hardware/hwgpe.c +++ b/drivers/acpi/hardware/hwgpe.c | |||
@@ -374,7 +374,7 @@ acpi_hw_enable_wakeup_gpe_block ( | |||
374 | * | 374 | * |
375 | * FUNCTION: acpi_hw_disable_all_gpes | 375 | * FUNCTION: acpi_hw_disable_all_gpes |
376 | * | 376 | * |
377 | * PARAMETERS: Flags - ACPI_NOT_ISR or ACPI_ISR | 377 | * PARAMETERS: None |
378 | * | 378 | * |
379 | * RETURN: Status | 379 | * RETURN: Status |
380 | * | 380 | * |
@@ -384,7 +384,7 @@ acpi_hw_enable_wakeup_gpe_block ( | |||
384 | 384 | ||
385 | acpi_status | 385 | acpi_status |
386 | acpi_hw_disable_all_gpes ( | 386 | acpi_hw_disable_all_gpes ( |
387 | u32 flags) | 387 | void) |
388 | { | 388 | { |
389 | acpi_status status; | 389 | acpi_status status; |
390 | 390 | ||
@@ -392,8 +392,8 @@ acpi_hw_disable_all_gpes ( | |||
392 | ACPI_FUNCTION_TRACE ("hw_disable_all_gpes"); | 392 | ACPI_FUNCTION_TRACE ("hw_disable_all_gpes"); |
393 | 393 | ||
394 | 394 | ||
395 | status = acpi_ev_walk_gpe_list (acpi_hw_disable_gpe_block, flags); | 395 | status = acpi_ev_walk_gpe_list (acpi_hw_disable_gpe_block); |
396 | status = acpi_ev_walk_gpe_list (acpi_hw_clear_gpe_block, flags); | 396 | status = acpi_ev_walk_gpe_list (acpi_hw_clear_gpe_block); |
397 | return_ACPI_STATUS (status); | 397 | return_ACPI_STATUS (status); |
398 | } | 398 | } |
399 | 399 | ||
@@ -402,7 +402,7 @@ acpi_hw_disable_all_gpes ( | |||
402 | * | 402 | * |
403 | * FUNCTION: acpi_hw_enable_all_runtime_gpes | 403 | * FUNCTION: acpi_hw_enable_all_runtime_gpes |
404 | * | 404 | * |
405 | * PARAMETERS: Flags - ACPI_NOT_ISR or ACPI_ISR | 405 | * PARAMETERS: None |
406 | * | 406 | * |
407 | * RETURN: Status | 407 | * RETURN: Status |
408 | * | 408 | * |
@@ -412,7 +412,7 @@ acpi_hw_disable_all_gpes ( | |||
412 | 412 | ||
413 | acpi_status | 413 | acpi_status |
414 | acpi_hw_enable_all_runtime_gpes ( | 414 | acpi_hw_enable_all_runtime_gpes ( |
415 | u32 flags) | 415 | void) |
416 | { | 416 | { |
417 | acpi_status status; | 417 | acpi_status status; |
418 | 418 | ||
@@ -420,7 +420,7 @@ acpi_hw_enable_all_runtime_gpes ( | |||
420 | ACPI_FUNCTION_TRACE ("hw_enable_all_runtime_gpes"); | 420 | ACPI_FUNCTION_TRACE ("hw_enable_all_runtime_gpes"); |
421 | 421 | ||
422 | 422 | ||
423 | status = acpi_ev_walk_gpe_list (acpi_hw_enable_runtime_gpe_block, flags); | 423 | status = acpi_ev_walk_gpe_list (acpi_hw_enable_runtime_gpe_block); |
424 | return_ACPI_STATUS (status); | 424 | return_ACPI_STATUS (status); |
425 | } | 425 | } |
426 | 426 | ||
@@ -429,7 +429,7 @@ acpi_hw_enable_all_runtime_gpes ( | |||
429 | * | 429 | * |
430 | * FUNCTION: acpi_hw_enable_all_wakeup_gpes | 430 | * FUNCTION: acpi_hw_enable_all_wakeup_gpes |
431 | * | 431 | * |
432 | * PARAMETERS: Flags - ACPI_NOT_ISR or ACPI_ISR | 432 | * PARAMETERS: None |
433 | * | 433 | * |
434 | * RETURN: Status | 434 | * RETURN: Status |
435 | * | 435 | * |
@@ -439,7 +439,7 @@ acpi_hw_enable_all_runtime_gpes ( | |||
439 | 439 | ||
440 | acpi_status | 440 | acpi_status |
441 | acpi_hw_enable_all_wakeup_gpes ( | 441 | acpi_hw_enable_all_wakeup_gpes ( |
442 | u32 flags) | 442 | void) |
443 | { | 443 | { |
444 | acpi_status status; | 444 | acpi_status status; |
445 | 445 | ||
@@ -447,7 +447,7 @@ acpi_hw_enable_all_wakeup_gpes ( | |||
447 | ACPI_FUNCTION_TRACE ("hw_enable_all_wakeup_gpes"); | 447 | ACPI_FUNCTION_TRACE ("hw_enable_all_wakeup_gpes"); |
448 | 448 | ||
449 | 449 | ||
450 | status = acpi_ev_walk_gpe_list (acpi_hw_enable_wakeup_gpe_block, flags); | 450 | status = acpi_ev_walk_gpe_list (acpi_hw_enable_wakeup_gpe_block); |
451 | return_ACPI_STATUS (status); | 451 | return_ACPI_STATUS (status); |
452 | } | 452 | } |
453 | 453 | ||