diff options
Diffstat (limited to 'source/components/dispatcher')
| -rw-r--r-- | source/components/dispatcher/dscontrol.c | 2 | ||||
| -rw-r--r-- | source/components/dispatcher/dsdebug.c | 2 | ||||
| -rw-r--r-- | source/components/dispatcher/dswexec.c | 3 | ||||
| -rw-r--r-- | source/components/dispatcher/dswload.c | 2 | ||||
| -rw-r--r-- | source/components/dispatcher/dswload2.c | 2 |
5 files changed, 5 insertions, 6 deletions
diff --git a/source/components/dispatcher/dscontrol.c b/source/components/dispatcher/dscontrol.c index 4ff0b3823a5d..32632c547e22 100644 --- a/source/components/dispatcher/dscontrol.c +++ b/source/components/dispatcher/dscontrol.c @@ -210,7 +210,7 @@ AcpiDsExecBeginControlOp ( } } - /*lint -fallthrough */ + ACPI_FALLTHROUGH; case AML_IF_OP: /* diff --git a/source/components/dispatcher/dsdebug.c b/source/components/dispatcher/dsdebug.c index a7ece9b013bd..68d3fc2fb07a 100644 --- a/source/components/dispatcher/dsdebug.c +++ b/source/components/dispatcher/dsdebug.c @@ -254,7 +254,7 @@ AcpiDsDumpMethodStack ( /* Ignore control codes, they are not errors */ - if ((Status & AE_CODE_MASK) == AE_CODE_CONTROL) + if (ACPI_CNTL_EXCEPTION (Status)) { return_VOID; } diff --git a/source/components/dispatcher/dswexec.c b/source/components/dispatcher/dswexec.c index 3fa7b95bba8e..87e692a0634a 100644 --- a/source/components/dispatcher/dswexec.c +++ b/source/components/dispatcher/dswexec.c @@ -772,8 +772,7 @@ AcpiDsExecEndOp ( break; } - /* Fall through */ - /*lint -fallthrough */ + ACPI_FALLTHROUGH; case AML_INT_EVAL_SUBTREE_OP: diff --git a/source/components/dispatcher/dswload.c b/source/components/dispatcher/dswload.c index 62a4fdca417b..be2f4a2beef8 100644 --- a/source/components/dispatcher/dswload.c +++ b/source/components/dispatcher/dswload.c @@ -375,7 +375,7 @@ AcpiDsLoad1BeginOp ( break; } - /*lint -fallthrough */ + ACPI_FALLTHROUGH; default: diff --git a/source/components/dispatcher/dswload2.c b/source/components/dispatcher/dswload2.c index 0ab715cd139b..76148af324bd 100644 --- a/source/components/dispatcher/dswload2.c +++ b/source/components/dispatcher/dswload2.c @@ -366,7 +366,7 @@ AcpiDsLoad2BeginOp ( break; } - /*lint -fallthrough */ + ACPI_FALLTHROUGH; default: |
