bootstrap: Bump limine-protocol commit
diff --git a/bootstrap b/bootstrap
index ba6d38a6..ee40c7d9 100755
--- a/bootstrap
+++ b/bootstrap
@@ -85,7 +85,7 @@ if ! test -f version; then
clone_repo_commit \
https://codeberg.org/Limine/limine-protocol.git \
limine-protocol \
- e42d010a761e4e9ac6bad1b578110ba72c61e1d9
+ 7d4c44ad7847227e970c1f3e5bd919dc01f8738c
clone_repo_commit \
https://codeberg.org/PicoEFI/PicoEFI.git \
diff --git a/common/protos/limine.c b/common/protos/limine.c
index fc2a220d..701e390e 100644
--- a/common/protos/limine.c
+++ b/common/protos/limine.c
@@ -904,18 +904,18 @@ FEAT_START
entrypoint_request->response = reported_addr(entrypoint_response);
FEAT_END
- // x86-64 Keep IOMMU feature
+ // Keep IOMMU feature
#if defined (__x86_64__) || defined (__i386__)
bool keep_iommu = false;
FEAT_START
- struct limine_x86_64_keep_iommu_request *keep_iommu_request =
- get_request(LIMINE_X86_64_KEEP_IOMMU_REQUEST_ID);
+ struct limine_keep_iommu_request *keep_iommu_request =
+ get_request(LIMINE_KEEP_IOMMU_REQUEST_ID);
if (keep_iommu_request == NULL) {
break;
}
- struct limine_x86_64_keep_iommu_response *keep_iommu_response =
- ext_mem_alloc(sizeof(struct limine_x86_64_keep_iommu_response));
+ struct limine_keep_iommu_response *keep_iommu_response =
+ ext_mem_alloc(sizeof(struct limine_keep_iommu_response));
keep_iommu_request->response = reported_addr(keep_iommu_response);
keep_iommu = true;
