mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-12 23:16:40 +00:00
memory_map: Remove unnecessary const
Since the return value isn't a pointer thing doesn't have much use.
This commit is contained in:
parent
4d3f1f6ae8
commit
b328effd9b
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ INLINE_UNROLL static inline uintptr_t mmio_get_device_pa(unsigned int device_id)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifndef MEMORY_MAP_USE_IDENTIY_MAPPING
|
#ifndef MEMORY_MAP_USE_IDENTIY_MAPPING
|
||||||
INLINE_UNROLL static inline const uintptr_t mmio_get_device_address(unsigned int device_id) {
|
INLINE_UNROLL static inline uintptr_t mmio_get_device_address(unsigned int device_id) {
|
||||||
size_t offset = 0;
|
size_t offset = 0;
|
||||||
for(unsigned int i = 0; i < device_id; i++) {
|
for(unsigned int i = 0; i < device_id; i++) {
|
||||||
offset += g_devices[i].size;
|
offset += g_devices[i].size;
|
||||||
|
|
Loading…
Reference in a new issue