mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
warmboot: remove superfluous firmware version check
This commit is contained in:
parent
691a453d77
commit
99d7f72c51
1 changed files with 0 additions and 1 deletions
|
@ -36,7 +36,6 @@ namespace ams::warmboot {
|
||||||
void Main(const Metadata *metadata) {
|
void Main(const Metadata *metadata) {
|
||||||
/* Ensure that we're running under vaguely sane conditions. */
|
/* Ensure that we're running under vaguely sane conditions. */
|
||||||
AMS_ABORT_UNLESS(metadata->magic == Metadata::Magic);
|
AMS_ABORT_UNLESS(metadata->magic == Metadata::Magic);
|
||||||
AMS_ABORT_UNLESS(metadata->target_firmware <= ams::TargetFirmware_Max);
|
|
||||||
|
|
||||||
/* Restrict the bpmp's access to dram. */
|
/* Restrict the bpmp's access to dram. */
|
||||||
if (metadata->target_firmware >= TargetFirmware_4_0_0) {
|
if (metadata->target_firmware >= TargetFirmware_4_0_0) {
|
||||||
|
|
Loading…
Reference in a new issue