summaryrefslogtreecommitdiffstats
path: root/src/northbridge
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-11-30 07:51:11 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-12-02 14:44:41 +0000
commita521d66116ce178d36f94b794c4546f090a40a8b (patch)
treeef87d1c743b1df35814f7e430354b8f12845b561 /src/northbridge
parent5a845ee894802bb214503a70e05bc0eb31c19a15 (diff)
downloadcoreboot-a521d66116ce178d36f94b794c4546f090a40a8b.tar.gz
coreboot-a521d66116ce178d36f94b794c4546f090a40a8b.tar.bz2
coreboot-a521d66116ce178d36f94b794c4546f090a40a8b.zip
nb/intel/i945: Use boolean for gpu_lvds_use_spread_spectrum_clock
Change-Id: I5f11bde99dfcde81c9dc62c1102330c0a6c16e04 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/70149 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/intel/i945/chip.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/northbridge/intel/i945/chip.h b/src/northbridge/intel/i945/chip.h
index 0de0e58f9f69..8153462dc43b 100644
--- a/src/northbridge/intel/i945/chip.h
+++ b/src/northbridge/intel/i945/chip.h
@@ -4,6 +4,7 @@
#define NORTHBRIDGE_INTEL_I945_CHIP_H
#include <drivers/intel/gma/i915.h>
+#include <types.h>
struct northbridge_intel_i945_config {
/* In units of 100us timer */
@@ -17,7 +18,7 @@ struct northbridge_intel_i945_config {
u32 gpu_hotplug;
u32 pwm_freq;
- int gpu_lvds_use_spread_spectrum_clock;
+ bool gpu_lvds_use_spread_spectrum_clock;
struct i915_gpu_controller_info gfx;
int pci_mmio_size;
};