Deleted Added
full compact
69c69
< static UINT32
---
> UINT32
82a83
> UINT32 Offset,
84a86
>
327c329
< while (*End && *End != '"')
---
> while (*End && (*End != '"'))
335a338,345
> /*
> * Special "comment" fields at line end, ignore them.
> * Note: normal slash-slash and slash-asterisk comments are
> * stripped already by the DtGetNextLine parser.
> *
> * TBD: Perhaps DtGetNextLine should parse the following type
> * of comments also.
> */
337,338c347
< *End == '<' ||
< *End == '/')
---
> *End == '<')
388c397
< static UINT32
---
> UINT32
402a412,424
> switch (State)
> {
> case DT_START_QUOTED_STRING:
> case DT_SLASH_ASTERISK_COMMENT:
> case DT_SLASH_SLASH_COMMENT:
>
> AcpiOsPrintf ("**** EOF within comment/string %u\n", State);
> break;
>
> default:
> break;
> }
>
522a545,554
> case '\n':
> CurrentLineOffset = Gbl_NextLineOffset;
> Gbl_NextLineOffset = (UINT32) ftell (Handle);
> Gbl_CurrentLineNumber++;
> break;
>
> case '*':
> /* Consume all adjacent asterisks */
> break;
>
655a688
> * Offset - Offset in current table
669a703
> UINT32 Offset,
676a711,713
> FlPrintFile (FileId, "Output: [%3.3Xh %4.4d% 3d] ",
> Offset, Offset, Length);
>
679a717,721
> if (i >= 16)
> {
> FlPrintFile (FileId, "%23s", "");
> }
>
682,683d723
< FlPrintFile (FileId, "Output: [%.3d] ", Length);
<
776,783d815
< #if 0
< /* TBD Dump the length and AML offset */
<
< FlPrintFile (ASL_FILE_LISTING_OUTPUT,
< "Output: Length %d(0x%X) Offset %d(0x%X)\n",
< Field->Column-4, Field->Name, Field->Value);
< #endif
<
786c818
< DtDumpBuffer (ASL_FILE_LISTING_OUTPUT, Buffer, Length);
---
> DtDumpBuffer (ASL_FILE_LISTING_OUTPUT, Buffer, Field->TableOffset, Length);