1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2010-2014 Intel Corporation 3 */ 4 5 /* Test prototypes */ 6 int test_port_ring_reader(void); 7 int test_port_ring_writer(void); 8 9 /* Extern variables */ 10 typedef int (*port_test)(void); 11 12 extern port_test port_tests[]; 13 extern unsigned n_port_tests; 14