X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=drivers%2Facpi%2Fparser%2Fpsopcode.c;h=11d6351ab8b288ed2d428e8677e2d017465adda2;hb=9464c7cf61b9433057924c36e6e02f303a00e768;hp=4bd25e32769f7443235d7831dbbb3aef1317f061;hpb=41689045f6a3cbe0550e1d34e9cc20d2e8c432ba;p=linux-2.6.git diff --git a/drivers/acpi/parser/psopcode.c b/drivers/acpi/parser/psopcode.c index 4bd25e327..11d6351ab 100644 --- a/drivers/acpi/parser/psopcode.c +++ b/drivers/acpi/parser/psopcode.c @@ -725,13 +725,12 @@ static const u8 acpi_gbl_long_op_index[NUM_EXTENDED_OPCODE] = { const struct acpi_opcode_info *acpi_ps_get_opcode_info(u16 opcode) { - ACPI_FUNCTION_NAME(ps_get_opcode_info); + ACPI_FUNCTION_NAME("ps_get_opcode_info"); /* * Detect normal 8-bit opcode or extended 16-bit opcode */ if (!(opcode & 0xFF00)) { - /* Simple (8-bit) opcode: 0-255, can't index beyond table */ return (&acpi_gbl_aml_op_info @@ -740,7 +739,6 @@ const struct acpi_opcode_info *acpi_ps_get_opcode_info(u16 opcode) if (((opcode & 0xFF00) == AML_EXTENDED_OPCODE) && (((u8) opcode) <= MAX_EXTENDED_OPCODE)) { - /* Valid extended (16-bit) opcode */ return (&acpi_gbl_aml_op_info @@ -781,7 +779,7 @@ char *acpi_ps_get_opcode_name(u16 opcode) return (op->name); #else - return ("OpcodeName unavailable"); + return ("AE_NOT_CONFIGURED"); #endif }