summaryrefslogtreecommitdiff
path: root/src/mainboard/amd/padmelon/fan_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/padmelon/fan_init.c')
-rw-r--r--src/mainboard/amd/padmelon/fan_init.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mainboard/amd/padmelon/fan_init.c b/src/mainboard/amd/padmelon/fan_init.c
index 574ef7fe9b..a2db5eaafc 100644
--- a/src/mainboard/amd/padmelon/fan_init.c
+++ b/src/mainboard/amd/padmelon/fan_init.c
@@ -72,11 +72,8 @@ struct fintek_fan system_fan = {
static void init_fan_control(void *unused)
{
- u32 temp;
/* Open a LPC IO access to 0x0220-0x0227 */
- temp = pci_read_config32(SOC_LPC_DEV, LPC_IO_PORT_DECODE_ENABLE);
- temp |= DECODE_ENABLE_SERIAL_PORT2;
- pci_write_config32(SOC_LPC_DEV, LPC_IO_PORT_DECODE_ENABLE, temp);
+ pci_or_config32(SOC_LPC_DEV, LPC_IO_PORT_DECODE_ENABLE, DECODE_ENABLE_SERIAL_PORT2);
set_fan(&cpu_fan);
set_fan(&system_fan);