summaryrefslogtreecommitdiffstats
path: root/include/memtest.h
blob: a337be832f41ade0f4a4f88905cbbd12c8f9c7b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __MEMTEST_H
#define __MEMTEST_H

#include <linux/ioport.h>

struct mem_test_resource {
	struct resource *r;
	struct list_head list;
};

int mem_test(resource_size_t _start,
		resource_size_t _end, int bus_only);

#endif /* __MEMTEST_H */