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 v6.12-rc2 21 lines 579 B view raw
1/* SPDX-License-Identifier: GPL-2.0 or MIT */ 2/* Copyright 2019 Collabora ltd. */ 3 4#ifndef __PANTHOR_DEVFREQ_H__ 5#define __PANTHOR_DEVFREQ_H__ 6 7struct devfreq; 8struct thermal_cooling_device; 9 10struct panthor_device; 11struct panthor_devfreq; 12 13int panthor_devfreq_init(struct panthor_device *ptdev); 14 15int panthor_devfreq_resume(struct panthor_device *ptdev); 16int panthor_devfreq_suspend(struct panthor_device *ptdev); 17 18void panthor_devfreq_record_busy(struct panthor_device *ptdev); 19void panthor_devfreq_record_idle(struct panthor_device *ptdev); 20 21#endif /* __PANTHOR_DEVFREQ_H__ */