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