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 master 17 lines 461 B view raw
1/* SPDX-License-Identifier: GPL-2.0 OR MIT */ 2/* Copyright (c) 2026 Imagination Technologies Ltd. */ 3 4#ifndef PVR_DUMP_H 5#define PVR_DUMP_H 6 7/* Forward declaration from pvr_device.h. */ 8struct pvr_device; 9 10/* Forward declaration from pvr_rogue_fwif.h. */ 11struct rogue_fwif_fwccb_cmd_context_reset_data; 12 13void 14pvr_dump_context_reset_notification(struct pvr_device *pvr_dev, 15 struct rogue_fwif_fwccb_cmd_context_reset_data *data); 16 17#endif /* PVR_DUMP_H */