ACPICA: add comments, no functional change
[linux-2.6-microblaze.git] / drivers / acpi / acpica / exoparg2.c
index d5b3efd..3a47756 100644 (file)
@@ -287,9 +287,9 @@ acpi_status acpi_ex_opcode_2A_1T_1R(struct acpi_walk_state *walk_state)
                 * NOTE: A length of zero is ok, and will create a zero-length, null
                 *       terminated string.
                 */
-               while ((length < operand[0]->buffer.length) &&
-                      (length < operand[1]->integer.value) &&
-                      (operand[0]->buffer.pointer[length])) {
+               while ((length < operand[0]->buffer.length) &&  /* Length of input buffer */
+                      (length < operand[1]->integer.value) &&  /* Length operand */
+                      (operand[0]->buffer.pointer[length])) {  /* Null terminator */
                        length++;
                }