HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31410
Change subject: sb/intel/i82801ix/sata.c: Add brackets around left shift ......................................................................
sb/intel/i82801ix/sata.c: Add brackets around left shift
Change-Id: I8068d922d12acb4dbff22c231a065151b43f4c2f Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/southbridge/intel/i82801ix/sata.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/10/31410/1
diff --git a/src/southbridge/intel/i82801ix/sata.c b/src/southbridge/intel/i82801ix/sata.c index e3b7e14..1968694 100644 --- a/src/southbridge/intel/i82801ix/sata.c +++ b/src/southbridge/intel/i82801ix/sata.c @@ -43,7 +43,7 @@ /* Set AHCI access mode. No other ABAR registers should be accessed before this. */ reg32 = read32(abar + 0x04); - reg32 |= 1 << 31; + reg32 |= (1 << 31); write32(abar + 0x04, reg32);
/* CAP (HBA Capabilities) : enable power management */