summaryrefslogtreecommitdiffstats
path: root/kexec/add_segment.c
blob: 029c376a2e8d4e7693d88dc2ae566e4300e05429 (plain)
1
2
3
4
5
6
7
8
#include "kexec.h"

void add_segment(struct kexec_info *info,
		 const void *buf, size_t bufsz,
		 unsigned long base, size_t memsz)
{
	return add_segment_phys_virt(info, buf, bufsz, base, memsz, 0);
}