mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-09 22:56:35 +00:00
Merge pull request #51 from lioncash/const
memory_map: Remove unnecessary const
This commit is contained in:
commit
18d0a81bd5
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
|
||||
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;
|
||||
for(unsigned int i = 0; i < device_id; i++) {
|
||||
offset += g_devices[i].size;
|
||||
|
|
Loading…
Reference in a new issue