Przeglądaj źródła

ACPI: Change package length error to warning

The condition is harmless and no need to scare the user

http://bugzilla.kernel.org/show_bug.cgi?id=11245

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Ming Ling 16 lat temu
rodzic
commit
1371c893ff
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      drivers/acpi/dispatcher/dsobject.c

+ 1 - 1
drivers/acpi/dispatcher/dsobject.c

@@ -496,7 +496,7 @@ acpi_ds_build_internal_package_obj(struct acpi_walk_state *walk_state,
 			arg = arg->common.next;
 			arg = arg->common.next;
 		}
 		}
 
 
-		ACPI_ERROR((AE_INFO,
+		ACPI_WARNING((AE_INFO,
 			    "Package List length (%X) larger than NumElements count (%X), truncated\n",
 			    "Package List length (%X) larger than NumElements count (%X), truncated\n",
 			    i, element_count));
 			    i, element_count));
 	} else if (i < element_count) {
 	} else if (i < element_count) {