blob: b059d4706784ecc2a010e29d722d90ee1bfd1719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* SPDX-License-Identifier: MIT */
#ifndef MCC_H
#define MCC_H
#include "types.h"
struct mcc_carveout {
u64 base;
u64 size;
};
extern size_t mcc_carveout_count;
extern struct mcc_carveout mcc_carveouts[];
int mcc_init(void);
int mcc_unmap_carveouts(void);
#endif
|