src/superio: Remove unnecessary space after casts
Change-Id: Iab76316f345fb0cf2ca2a3eaf40f64a1f1b7fc13 Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/69814 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
1840f935d6
commit
24ca80aab6
@ -408,7 +408,7 @@
|
|||||||
#define ASPEED_EXIT_KEY 0xAA
|
#define ASPEED_EXIT_KEY 0xAA
|
||||||
|
|
||||||
#define TO_BE_UPDATE 0
|
#define TO_BE_UPDATE 0
|
||||||
#define AndMask32(HighBit, LowBit) ~((((uint32_t) 1 << (HighBit - LowBit + 1)) - 1) << LowBit)
|
#define AndMask32(HighBit, LowBit) ~((((uint32_t)1 << (HighBit - LowBit + 1)) - 1) << LowBit)
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
GPIOA = 0,
|
GPIOA = 0,
|
||||||
|
@ -281,7 +281,7 @@ int set_sections(u16 base_address, u8 fan, u8 *boundaries, u8 *sections)
|
|||||||
if (value > 100)
|
if (value > 100)
|
||||||
return message_invalid_2(HWM_STATUS_INVALID_SECTION_VALUE, fan);
|
return message_invalid_2(HWM_STATUS_INVALID_SECTION_VALUE, fan);
|
||||||
temp = (255 * value) / 100;
|
temp = (255 * value) / 100;
|
||||||
value = (u8) (temp & 0x00ff);
|
value = (u8)(temp & 0x00ff);
|
||||||
write_hwm_reg(base_address, index, value);
|
write_hwm_reg(base_address, index, value);
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user