AcpiDump/Linux: Update for code style, no functional change.

Fixes a while(1) loop to improve readability.
Lv Zheng.
This commit is contained in:
Robert Moore 2013-08-23 08:10:20 -07:00
parent 99779c83f4
commit 4186927833

View File

@ -452,7 +452,7 @@ OslAddTableToList (
else
{
Next = Gbl_TableListHead;
do
while (1)
{
if (ACPI_COMPARE_NAME (Next->Signature, Signature))
{
@ -472,7 +472,6 @@ OslAddTableToList (
}
Next = Next->Next;
}
while (1);
Next->Next = NewInfo;
}