From: Randy D. <rd...@us...> - 2003-03-31 04:13:16
|
Update of /cvsroot/acpi/pmtools/acpidisasm In directory sc8-pr-cvs1:/tmp/cvs-serv6905/acpidisasm Modified Files: parse.c Log Message: fix some compile warnings; Index: parse.c =================================================================== RCS file: /cvsroot/acpi/pmtools/acpidisasm/parse.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -d -r1.1.1.1 -r1.2 --- parse.c 31 Mar 2003 03:35:13 -0000 1.1.1.1 +++ parse.c 31 Mar 2003 04:13:12 -0000 1.2 @@ -447,7 +447,7 @@ { #ifdef ACPI_DEBUG const u8 *decl = state->aml; -#endif +#endif /* ACPI_DEBUG */ struct acpi_op *field; int opcode; @@ -475,7 +475,7 @@ #ifdef ACPI_DEBUG field->decl = decl; -#endif +#endif /* ACPI_DEBUG */ switch(opcode) { @@ -660,7 +660,7 @@ { #ifdef ACPI_DEBUG const u8 *decl = state.aml; -#endif ACPI_DEBUG +#endif /* ACPI_DEBUG */ int opcode = acpi_peek_opcode(&state); const struct acpi_aml_op *opc = acpi_find_opcode(opcode); @@ -722,7 +722,7 @@ #ifdef ACPI_DEBUG op->decl = decl; -#endif +#endif /* ACPI_DEBUG */ } arg_count = 0; @@ -751,7 +751,7 @@ { #ifdef ACPI_DEBUG const u8 *decl = state.aml; -#endif ACPI_DEBUG +#endif /* ACPI_DEBUG */ struct acpi_op *arg = acpi_next_arg(&state, *args, @@ -761,7 +761,7 @@ { arg->decl = decl; } -#endif +#endif /* ACPI_DEBUG */ acpi_append_arg(op, arg); args++; } |