11 lines
211 B
C
11 lines
211 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ARCH_TESTS_H
|
|
#define ARCH_TESTS_H
|
|
|
|
struct test_suite;
|
|
|
|
int test__cpuid_match(struct test_suite *test, int subtest);
|
|
extern struct test_suite *arch_tests[];
|
|
|
|
#endif
|