mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-17 17:36:44 +00:00
Fix freudian slip
This commit is contained in:
parent
6592744b3b
commit
71f01aaa43
3 changed files with 21 additions and 21 deletions
|
@ -19,7 +19,7 @@
|
||||||
#include "interrupt.h"
|
#include "interrupt.h"
|
||||||
#include "cpu_context.h"
|
#include "cpu_context.h"
|
||||||
#include "actmon.h"
|
#include "actmon.h"
|
||||||
#include "syscrt0.h"
|
#include "sysctr0.h"
|
||||||
|
|
||||||
#include "mmu.h"
|
#include "mmu.h"
|
||||||
#include "arm.h"
|
#include "arm.h"
|
||||||
|
@ -192,7 +192,7 @@ void setup_current_core_state(void) {
|
||||||
|
|
||||||
__isb();
|
__isb();
|
||||||
|
|
||||||
SET_SYSREG(cntfrq_el0, MAKE_SYSCRT0_REG(0x20)); /* TODO: Reg name. */
|
SET_SYSREG(cntfrq_el0, MAKE_SYSCTR0_REG(0x20)); /* TODO: Reg name. */
|
||||||
SET_SYSREG(cnthctl_el2, 3ull);
|
SET_SYSREG(cnthctl_el2, 3ull);
|
||||||
|
|
||||||
__isb();
|
__isb();
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
#ifndef EXOSPHERE_SYSCRT0_H
|
|
||||||
#define EXOSPHERE_SYSCRT0_H
|
|
||||||
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
#include "memory_map.h"
|
|
||||||
|
|
||||||
/* Exosphere driver for the Tegra X1 SYSCRT0 Registers. */
|
|
||||||
|
|
||||||
#define SYSCRT0_BASE (MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_SYSCTR0))
|
|
||||||
|
|
||||||
|
|
||||||
#define MAKE_SYSCRT0_REG(n) MAKE_REG32(SYSCRT0_BASE + n)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
17
exosphere/src/sysctr0.h
Normal file
17
exosphere/src/sysctr0.h
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
#ifndef EXOSPHERE_SYSCTR0_H
|
||||||
|
#define EXOSPHERE_SYSCTR0_H
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "memory_map.h"
|
||||||
|
|
||||||
|
/* Exosphere driver for the Tegra X1 SYSCRT0 Registers. */
|
||||||
|
|
||||||
|
#define SYSCTR0_BASE (MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_SYSCTR0))
|
||||||
|
|
||||||
|
|
||||||
|
#define MAKE_SYSCTR0_REG(n) MAKE_REG32(SYSCTR0_BASE + n)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue