mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-20 06:20:41 +00:00

The functions: vpu_color_get_default() vpu_color_check_full_range() vpu_color_check_primaries() vpu_color_check_transfers() vpu_color_check_matrix() have been unused since 2022's commit1925665ef4
("media: amphion: remove redundant check of colorspace in venc_s_fmt") The (empty) function vpu_mbox_enable_rx() has been unused since it was added in 2022 by the commit61cbf1c1fa
("media: amphion: implement vpu core communication based on mailbox") Remove them. Signed-off-by: Dr. David Alan Gilbert <linux@treblig.org> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
15 lines
394 B
C
15 lines
394 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2020-2021 NXP
|
|
*/
|
|
|
|
#ifndef _AMPHION_VPU_MBOX_H
|
|
#define _AMPHION_VPU_MBOX_H
|
|
|
|
int vpu_mbox_init(struct vpu_core *core);
|
|
int vpu_mbox_request(struct vpu_core *core);
|
|
void vpu_mbox_free(struct vpu_core *core);
|
|
void vpu_mbox_send_msg(struct vpu_core *core, u32 type, u32 data);
|
|
void vpu_mbox_send_type(struct vpu_core *core, u32 type);
|
|
|
|
#endif
|