brintos

brintos / linux-shallow public Read only

0
0
Text · 356 B · 911ad70 Raw
15 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only OR MIT */2/* Copyright (c) 2023 Imagination Technologies Ltd. */3 4#ifndef PVR_FW_META_H5#define PVR_FW_META_H6 7#include <linux/types.h>8 9/* Forward declaration from pvr_device.h */10struct pvr_device;11 12int pvr_meta_cr_read32(struct pvr_device *pvr_dev, u32 reg_addr, u32 *reg_value_out);13 14#endif /* PVR_FW_META_H */15