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.5-rc4 16 lines 550 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* Copyright 2019 Collabora ltd. */ 3 4#ifndef __PANFROST_DEVFREQ_H__ 5#define __PANFROST_DEVFREQ_H__ 6 7int panfrost_devfreq_init(struct panfrost_device *pfdev); 8void panfrost_devfreq_fini(struct panfrost_device *pfdev); 9 10void panfrost_devfreq_resume(struct panfrost_device *pfdev); 11void panfrost_devfreq_suspend(struct panfrost_device *pfdev); 12 13void panfrost_devfreq_record_busy(struct panfrost_device *pfdev); 14void panfrost_devfreq_record_idle(struct panfrost_device *pfdev); 15 16#endif /* __PANFROST_DEVFREQ_H__ */