exosphere: improve nested switch format

This commit is contained in:
Michael Scire 2019-01-20 02:51:27 -08:00
parent a52e601f2e
commit 295574740d

View file

@ -36,7 +36,8 @@ uint32_t configitem_set(bool privileged, ConfigItem item, uint64_t value) {
g_battery_profile = (value != 0);
break;
case CONFIGITEM_NEEDS_REBOOT:
/* Force a reboot to RCM, if requested. */
/* Force a reboot, if requested. */
{
switch (value) {
case REBOOT_KIND_NO_REBOOT:
return 0;
@ -55,6 +56,8 @@ uint32_t configitem_set(bool privileged, ConfigItem item, uint64_t value) {
return 2;
}
MAKE_REG32(MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_RTC_PMC) + 0x400ull) = 0x10;
while (1) { }
}
break;
default:
return 2;