diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2017-08-31 17:21:06 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2017-08-31 17:21:06 +0000 |
commit | 0810e26699e1b40b9384eca2137be6155de0a5ba (patch) | |
tree | 2f9f57dbc41ae321c10f66c7d7985e328edbdec8 /source/compiler/aslmain.c | |
parent | 834d4c5613e9c57c0b9fba46fa717fd7fb9d5891 (diff) |
Notes
Diffstat (limited to 'source/compiler/aslmain.c')
-rw-r--r-- | source/compiler/aslmain.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/compiler/aslmain.c b/source/compiler/aslmain.c index 10251fb2a80f..e4ac4229eb8f 100644 --- a/source/compiler/aslmain.c +++ b/source/compiler/aslmain.c @@ -386,11 +386,11 @@ AslInitialize ( AcpiGbl_DmOpt_Verbose = FALSE; - /* Default integer width is 64 bits */ + /* Default integer width is 32 bits */ - AcpiGbl_IntegerBitWidth = 64; - AcpiGbl_IntegerNybbleWidth = 16; - AcpiGbl_IntegerByteWidth = 8; + AcpiGbl_IntegerBitWidth = 32; + AcpiGbl_IntegerNybbleWidth = 8; + AcpiGbl_IntegerByteWidth = 4; for (i = 0; i < ASL_NUM_FILES; i++) { |