Add void argument list for void GetRP1Memory(void)

Function definitions without an argument list are disallowed in C23.
Removed dropped arguments in later call to function.
This commit is contained in:
Connor Gibson
2025-06-07 15:02:05 -07:00
parent 3cf394b206
commit 454d50319a

View File

@@ -3326,8 +3326,7 @@ int CheckPCIeFileContent(const char* pcieaddress, const char* filename, const ch
} }
void GetRP1Memory() { void GetRP1Memory(void) {
pciemem_RP1[0] = '\0'; pciemem_RP1[0] = '\0';
DIR *dir = opendir(pcie_path); DIR *dir = opendir(pcie_path);
struct dirent *entry; struct dirent *entry;
@@ -3360,7 +3359,7 @@ int wiringPiGlobalMemoryAccess(void)
piBoard(); piBoard();
if (piRP1Model()) { if (piRP1Model()) {
GetRP1Memory(pciemem_RP1, sizeof(pciemem_RP1)); GetRP1Memory();
gpiomemGlobal = pciemem_RP1; gpiomemGlobal = pciemem_RP1;
MMAP_size = pciemem_RP1_Size; MMAP_size = pciemem_RP1_Size;
BaseAddr = 0x00000000; BaseAddr = 0x00000000;