summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801ix
diff options
context:
space:
mode:
authorFelix Singer <felixsinger@posteo.net>2024-01-12 21:21:06 +0100
committerFelix Singer <service+coreboot-gerrit@felixsinger.de>2024-01-14 10:15:34 +0000
commitf4842bbc145da72c37321fed876b3140f79c6aa7 (patch)
treea62832fe92d0e5904a86837d22a041a5f49d49d4 /src/southbridge/intel/i82801ix
parentd04378118d17abaf82cf03a9fd4abcfeb917badc (diff)
sb/intel: Use boolean for pcie_hotplug_map attribute
Change-Id: Ia5e1ee683fa3d8d216ece26426e9870981ede2ba Signed-off-by: Felix Singer <felixsinger@posteo.net> Reviewed-on: https://review.coreboot.org/c/coreboot/+/79932 Reviewed-by: Patrick Rudolph <patrick.rudolph@9elements.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/i82801ix')
-rw-r--r--src/southbridge/intel/i82801ix/chip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/southbridge/intel/i82801ix/chip.h b/src/southbridge/intel/i82801ix/chip.h
index ec7b977081..d52a0c2006 100644
--- a/src/southbridge/intel/i82801ix/chip.h
+++ b/src/southbridge/intel/i82801ix/chip.h
@@ -3,6 +3,7 @@
#ifndef SOUTHBRIDGE_INTEL_I82801IX_CHIP_H
#define SOUTHBRIDGE_INTEL_I82801IX_CHIP_H
+#include <stdbool.h>
#include <stdint.h>
enum {
@@ -73,7 +74,7 @@ struct southbridge_intel_i82801ix_config {
uint8_t scale : 2;
} pcie_power_limits[6];
- uint8_t pcie_hotplug_map[8];
+ bool pcie_hotplug_map[8];
/* Additional LPC IO decode ranges */
uint32_t gen1_dec;