mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
Fix fuse_get_hardware_type for 4.x
This commit is contained in:
parent
d5bb96c0f8
commit
a409016a88
2 changed files with 4 additions and 3 deletions
|
@ -185,7 +185,8 @@ uint32_t fuse_get_hardware_type(void) {
|
|||
if (mkey_get_revision() >= MASTERKEY_REVISION_400_CURRENT) {
|
||||
static const uint32_t types[] = {0,1,4,3};
|
||||
|
||||
hardware_type |= ((FUSE_CHIP_REGS->FUSE_RESERVED_ODM[4] >> 14) & 0x3C) - 1;
|
||||
hardware_type |= (FUSE_CHIP_REGS->FUSE_RESERVED_ODM[4] >> 14) & 0x3C;
|
||||
hardware_type--;
|
||||
return hardware_type > 3 ? 4 : types[hardware_type];
|
||||
} else {
|
||||
if (hardware_type >= 1) {
|
||||
|
|
|
@ -204,8 +204,8 @@ void call_smc_handler(uint32_t handler_id, smc_args_t *args) {
|
|||
int num_called = atomic_fetch_add(&g_num_smcs_called, 1);
|
||||
|
||||
/* DEBUG: use num_called to determine panic behavior. */
|
||||
if (num_called == 0x30) {
|
||||
/* panic(COLOR_F); */
|
||||
if (num_called == 0x21A) {
|
||||
panic(COLOR_F);
|
||||
}
|
||||
|
||||
/* Call function. */
|
||||
|
|
Loading…
Reference in a new issue