summaryrefslogtreecommitdiffstats
path: root/src/mainboard/asus/p2b
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-03-18 18:03:37 +0100
committerElyes Haouas <ehaouas@noos.fr>2023-04-08 03:35:08 +0000
commite1a6ea6c4871a4647d591cf296073758767fa612 (patch)
tree0e5e5d74cacbe3ed6d35af8898d447ec364c33f5 /src/mainboard/asus/p2b
parentfd4e676bb38c595906aff64f9c019bca4f36a224 (diff)
downloadcoreboot-e1a6ea6c4871a4647d591cf296073758767fa612.tar.gz
coreboot-e1a6ea6c4871a4647d591cf296073758767fa612.tar.bz2
coreboot-e1a6ea6c4871a4647d591cf296073758767fa612.zip
sb/intel/i82371eb/chip.h: Use 'bool' instead of 'int'
This to fix following error using Clang-16.0.0: CC romstage/mainboard/emulation/qemu-i440fx/static.o build/mainboard/emulation/qemu-i440fx/static.c:31:17: error: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Werror,-Wsingle-bit-bitfield-constant-conversion] .ide0_enable = 1, ^ build/mainboard/emulation/qemu-i440fx/static.c:32:17: error: implicit truncation from 'int' to a one-bit wide bit-field changes value from 1 to -1 [-Werror,-Wsingle-bit-bitfield-constant-conversion] .ide1_enable = 1, ^ Change-Id: I36cc19bc2908119fe940941e108ee217a7b26f50 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/73794 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'src/mainboard/asus/p2b')
-rw-r--r--src/mainboard/asus/p2b/devicetree.cb14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/asus/p2b/devicetree.cb b/src/mainboard/asus/p2b/devicetree.cb
index a6505529154c..42bdade09ff9 100644
--- a/src/mainboard/asus/p2b/devicetree.cb
+++ b/src/mainboard/asus/p2b/devicetree.cb
@@ -42,14 +42,14 @@ chip northbridge/intel/i440bx # Northbridge
device pci 4.1 on end # IDE
device pci 4.2 on end # USB
device pci 4.3 on end # ACPI
- register "ide0_enable" = "1"
- register "ide1_enable" = "1"
- register "ide_legacy_enable" = "1"
+ register "ide0_enable" = "true"
+ register "ide1_enable" = "true"
+ register "ide_legacy_enable" = "true"
# Enable UDMA/33 for higher speed if your IDE device(s) support it.
- register "ide0_drive0_udma33_enable" = "1"
- register "ide0_drive1_udma33_enable" = "1"
- register "ide1_drive0_udma33_enable" = "1"
- register "ide1_drive1_udma33_enable" = "1"
+ register "ide0_drive0_udma33_enable" = "true"
+ register "ide0_drive1_udma33_enable" = "true"
+ register "ide1_drive0_udma33_enable" = "true"
+ register "ide1_drive1_udma33_enable" = "true"
register "thrm_polarity" = "1"
register "lid_polarity" = "1"
end