brintos

brintos / linux-shallow public Read only

0
0
Text · 363 B · 9943ee3 Raw
21 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (c) 2021 MediaTek Inc.4 */5 6#ifndef __MTK_MDP_RDMA_H__7#define __MTK_MDP_RDMA_H__8 9struct mtk_mdp_rdma_cfg {10	unsigned int	pitch;11	unsigned int	addr0;12	unsigned int	width;13	unsigned int	height;14	unsigned int	x_left;15	unsigned int	y_top;16	int		fmt;17	int		color_encoding;18};19 20#endif // __MTK_MDP_RDMA_H__21