Skip to content

Commit

Permalink
core/cpu.c: current_radix_mode should be initialised to true
Browse files Browse the repository at this point in the history
POWER9 boots in radix mode. This does not change much but would allow
a big endian radix OS to avoid a HID change when it boots. However it
is confusing and fragile to have this set the wrong way initially.

Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
  • Loading branch information
npiggin authored and oohal committed Oct 2, 2019
1 parent 470ffb5 commit a2c9bab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/cpu.c
Expand Up @@ -43,7 +43,7 @@ static bool sreset_enabled;
static bool ipi_enabled;
static bool pm_enabled;
static bool current_hile_mode;
static bool current_radix_mode;
static bool current_radix_mode = true;
static bool tm_suspend_enabled;

unsigned long cpu_secondary_start __force_data = 0;
Expand Down

0 comments on commit a2c9bab

Please sign in to comment.