summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/lynxpoint/lpc.c
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2020-10-24 12:20:28 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2020-10-31 10:08:35 +0000
commit8963f7d40be4961e8ae6dca4185e4e682ba2fdb9 (patch)
tree02f2ce901e111c264ecd4744dad18c0883251ca5 /src/southbridge/intel/lynxpoint/lpc.c
parent2d35cf8689998b9dc0626083c3a3d867f82a35e0 (diff)
downloadcoreboot-8963f7d40be4961e8ae6dca4185e4e682ba2fdb9.tar.gz
coreboot-8963f7d40be4961e8ae6dca4185e4e682ba2fdb9.tar.bz2
coreboot-8963f7d40be4961e8ae6dca4185e4e682ba2fdb9.zip
sb/intel/lynxpoint: Drop unnecessary `UL` suffix
With BUILD_TIMELESS=1, Asrock B85M Pro4 and Google Wolf do not change. Change-Id: I9ba4097cd82c4ff68315a40e1e955e4ed9a43862 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46719 Reviewed-by: Michael Niewöhner <foss@mniewoehner.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/lynxpoint/lpc.c')
-rw-r--r--src/southbridge/intel/lynxpoint/lpc.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/southbridge/intel/lynxpoint/lpc.c b/src/southbridge/intel/lynxpoint/lpc.c
index 12e262502e7b..0e6fe640b446 100644
--- a/src/southbridge/intel/lynxpoint/lpc.c
+++ b/src/southbridge/intel/lynxpoint/lpc.c
@@ -338,9 +338,9 @@ static void lpt_lp_pm_init(struct device *dev)
pci_or_config32(dev, 0xac, 1 << 21);
pch_iobp_update(0xED00015C, ~(1 << 11), 0x00003700);
- pch_iobp_update(0xED000118, ~0UL, 0x00c00000);
- pch_iobp_update(0xED000120, ~0UL, 0x00240000);
- pch_iobp_update(0xCA000000, ~0UL, 0x00000009);
+ pch_iobp_update(0xED000118, ~0, 0x00c00000);
+ pch_iobp_update(0xED000120, ~0, 0x00240000);
+ pch_iobp_update(0xCA000000, ~0, 0x00000009);
/* Set RCBA CIR28 0x3A84 based on SATA port enables */
data = 0x00001005;
@@ -392,7 +392,7 @@ static void enable_clock_gating(struct device *dev)
u16 reg16;
/* DMI */
- RCBA32_AND_OR(0x2234, ~0UL, 0xf);
+ RCBA32_AND_OR(0x2234, ~0, 0xf);
reg16 = pci_read_config16(dev, GEN_PMCON_1);
reg16 |= (1 << 11) | (1 << 12) | (1 << 14);
reg16 |= (1 << 2); // PCI CLKRUN# Enable
@@ -401,7 +401,7 @@ static void enable_clock_gating(struct device *dev)
reg32 = RCBA32(CG);
reg32 |= (1 << 22); // HDA Dynamic
- reg32 |= (1UL << 31); // LPC Dynamic
+ reg32 |= (1 << 31); // LPC Dynamic
reg32 |= (1 << 16); // PCIe Dynamic
reg32 |= (1 << 27); // HPET Dynamic
reg32 |= (1 << 28); // GPIO Dynamic
@@ -417,7 +417,7 @@ static void enable_lp_clock_gating(struct device *dev)
u16 reg16;
/* DMI */
- RCBA32_AND_OR(0x2234, ~0UL, 0xf);
+ RCBA32_AND_OR(0x2234, ~0, 0xf);
reg16 = pci_read_config16(dev, GEN_PMCON_1);
reg16 &= ~((1 << 11) | (1 << 14));
reg16 |= (1 << 5) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 13);
@@ -463,8 +463,8 @@ static void enable_lp_clock_gating(struct device *dev)
RCBA32_OR(0x38c0, 0x3c07); // SPI Dynamic
- pch_iobp_update(0xCF000000, ~0UL, 0x00007001);
- pch_iobp_update(0xCE00C000, ~1UL, 0x00000000); // bit0=0 in BWG 1.4.0
+ pch_iobp_update(0xCF000000, ~0, 0x00007001);
+ pch_iobp_update(0xCE00C000, ~1, 0x00000000); // bit0=0 in BWG 1.4.0
}
static void pch_set_acpi_mode(void)