From 4046c49f886c1de0de9f17e208f9e445deb1e707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Mon, 30 Sep 2013 04:15:27 +0200 Subject: [PATCH] M68K: Account for extra parameter to create_area_etc() Would have been nice to also fix 68k code... just sayin. --- src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp b/src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp index f9a3709dc6..f3c735ae57 100644 --- a/src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp +++ b/src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp @@ -275,7 +275,7 @@ M68KPagingMethod040::PhysicalPageSlotPool::AllocatePool( physical_address_restrictions physicalRestrictions = {}; area_id dataArea = create_area_etc(B_SYSTEM_TEAM, "physical page pool", PAGE_ALIGN(areaSize), B_FULL_LOCK, - B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, CREATE_AREA_DONT_WAIT, + B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, CREATE_AREA_DONT_WAIT, 0, &virtualRestrictions, &physicalRestrictions, &data); if (dataArea < 0) return dataArea;