summaryrefslogtreecommitdiff
path: root/arch/x86/boot/compressed/mem.c
blob: 67594fcb11d91a3cb388cab808528cd03fe277c1 (plain)
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: GPL-2.0-only

#include "error.h"

void arch_accept_memory(phys_addr_t start, phys_addr_t end)
{
	/* Platform-specific memory-acceptance call goes here */
	error("Cannot accept memory");
}