brintos

brintos / linux-shallow public Read only

0
0
Text · 572 B · 0fd59f6 Raw
23 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only OR MIT */2/* Copyright (c) 2023 Imagination Technologies Ltd. */3 4#ifndef PVR_VM_MIPS_H5#define PVR_VM_MIPS_H6 7/* Forward declaration from pvr_device.h. */8struct pvr_device;9 10/* Forward declaration from pvr_gem.h. */11struct pvr_fw_object;12 13int14pvr_vm_mips_init(struct pvr_device *pvr_dev);15void16pvr_vm_mips_fini(struct pvr_device *pvr_dev);17int18pvr_vm_mips_map(struct pvr_device *pvr_dev, struct pvr_fw_object *fw_obj);19void20pvr_vm_mips_unmap(struct pvr_device *pvr_dev, struct pvr_fw_object *fw_obj);21 22#endif /* PVR_VM_MIPS_H */23