Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.17 16 lines 496 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6#ifndef SELFTEST_ENGINE_HEARTBEAT_H 7#define SELFTEST_ENGINE_HEARTBEAT_H 8 9struct intel_engine_cs; 10 11void st_engine_heartbeat_disable(struct intel_engine_cs *engine); 12void st_engine_heartbeat_disable_no_pm(struct intel_engine_cs *engine); 13void st_engine_heartbeat_enable(struct intel_engine_cs *engine); 14void st_engine_heartbeat_enable_no_pm(struct intel_engine_cs *engine); 15 16#endif /* SELFTEST_ENGINE_HEARTBEAT_H */