Fix indentation

This commit is contained in:
Vincent Barrilliot 2023-12-08 12:29:49 +01:00
parent ced1b8c107
commit 4707637b58

View file

@ -10,7 +10,7 @@ static void configure_zones(void);
/*
* Initialize the SuperIO registers
*/
void superio_init(void) {
void superio_init(void) {
#if MODEL == MODEL_FOENIX_A2560X || MODEL == MODEL_FOENIX_GENX
// This initialization used to be done by the FPGA.
// Other machines A2560K/C256FMX will have this change soon to.
@ -68,7 +68,7 @@ static void configure_zones(void);
*FAN1_REG = 0xE0; // <= Value to change to Get the Fan running.
// See doc for more options, need to set $80 to get it started and use other bits to change the PWN...
*FAN_CTRL_REG = 0x01;
}
}
static void configure_zones(void) {
// First step is to get into the Configuration Mode
@ -233,5 +233,5 @@ static void configure_zones(void) {
*GP60_REG = 0x84; // THis is to replicate the FPGA behavior when it did the config.
*LED1_REG = 0x01; // THis is to replace the FPGA behavior when it did the config in hardware.
}
}
#endif