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.15-rc5 13 lines 351 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only OR MIT */ 2/* Copyright (c) 2023 Imagination Technologies Ltd. */ 3 4#ifndef PVR_FW_STARTSTOP_H 5#define PVR_FW_STARTSTOP_H 6 7/* Forward declaration from pvr_device.h. */ 8struct pvr_device; 9 10int pvr_fw_start(struct pvr_device *pvr_dev); 11int pvr_fw_stop(struct pvr_device *pvr_dev); 12 13#endif /* PVR_FW_STARTSTOP_H */