File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
os_specific/service_layers Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ typedef struct acpi_db_execute_walk
187
187
{
188
188
UINT32 Count ;
189
189
UINT32 MaxCount ;
190
- char NameSeg [ACPI_NAMESEG_SIZE + 1 ];
190
+ char NameSeg [ACPI_NAMESEG_SIZE + 1 ] ACPI_NONSTRING ;
191
191
192
192
} ACPI_DB_EXECUTE_WALK ;
193
193
Original file line number Diff line number Diff line change 213
213
214
214
typedef struct acpi_table_header
215
215
{
216
- char Signature [ACPI_NAMESEG_SIZE ]; /* ASCII table signature */
216
+ char Signature [ACPI_NAMESEG_SIZE ] ACPI_NONSTRING ; /* ASCII table signature */
217
217
UINT32 Length ; /* Length of table in bytes, including this header */
218
218
UINT8 Revision ; /* ACPI Specification minor version number */
219
219
UINT8 Checksum ; /* To make sum of entire table == 0 */
220
- char OemId [ACPI_OEM_ID_SIZE ]; /* ASCII OEM identification */
221
- char OemTableId [ACPI_OEM_TABLE_ID_SIZE ]; /* ASCII OEM table identification */
220
+ char OemId [ACPI_OEM_ID_SIZE ] ACPI_NONSTRING ; /* ASCII OEM identification */
221
+ char OemTableId [ACPI_OEM_TABLE_ID_SIZE ] ACPI_NONSTRING ; /* ASCII OEM table identification */
222
222
UINT32 OemRevision ; /* OEM revision number */
223
223
char AslCompilerId [ACPI_NAMESEG_SIZE ]; /* ASCII ASL compiler vendor ID */
224
224
UINT32 AslCompilerRevision ; /* ASL compiler version */
Original file line number Diff line number Diff line change @@ -167,7 +167,7 @@ typedef struct osl_table_info
167
167
{
168
168
struct osl_table_info * Next ;
169
169
UINT32 Instance ;
170
- char Signature [ACPI_NAMESEG_SIZE ];
170
+ char Signature [ACPI_NAMESEG_SIZE ] ACPI_NONSTRING ;
171
171
172
172
} OSL_TABLE_INFO ;
173
173
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ ApWriteToBinaryFile (
264
264
ACPI_TABLE_HEADER * Table ,
265
265
UINT32 Instance )
266
266
{
267
- char Filename [ACPI_NAMESEG_SIZE + 16 ];
267
+ char Filename [ACPI_NAMESEG_SIZE + 16 ] ACPI_NONSTRING ;
268
268
char InstanceStr [16 ];
269
269
ACPI_FILE File ;
270
270
ACPI_SIZE Actual ;
You can’t perform that action at this time.
0 commit comments