1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6 #ifndef SELFTEST_RPS_H 7 #define SELFTEST_RPS_H 8 9 int live_rps_control(void *arg); 10 int live_rps_clock_interval(void *arg); 11 int live_rps_frequency_cs(void *arg); 12 int live_rps_frequency_srm(void *arg); 13 int live_rps_power(void *arg); 14 int live_rps_interrupt(void *arg); 15 int live_rps_dynamic(void *arg); 16 17 #endif /* SELFTEST_RPS_H */ 18