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.19 15 lines 394 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright 2020-2021 NXP 4 */ 5 6#ifndef _AMPHION_VPU_MBOX_H 7#define _AMPHION_VPU_MBOX_H 8 9int vpu_mbox_init(struct vpu_core *core); 10int vpu_mbox_request(struct vpu_core *core); 11void vpu_mbox_free(struct vpu_core *core); 12void vpu_mbox_send_msg(struct vpu_core *core, u32 type, u32 data); 13void vpu_mbox_send_type(struct vpu_core *core, u32 type); 14 15#endif