summaryrefslogtreecommitdiff
path: root/tools/testing/memblock/tests/common.h
blob: 48efc4270ea17e17b0ed42575cd66de960abb5bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef _MEMBLOCK_TEST_H
#define _MEMBLOCK_TEST_H

#include <linux/types.h>
#include <linux/memblock.h>

struct region {
	phys_addr_t base;
	phys_addr_t size;
};

void reset_memblock(void);

#endif