1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Support for Intel Camera Imaging ISP subsystem. 4 * Copyright (c) 2010 - 2015, Intel Corporation. 5 */ 6 7 #ifndef __CSI_RX_RMGR_H_INCLUDED__ 8 #define __CSI_RX_RMGR_H_INCLUDED__ 9 10 typedef struct isys_csi_rx_rsrc_s isys_csi_rx_rsrc_t; 11 struct isys_csi_rx_rsrc_s { 12 u32 active_table; 13 u32 num_active; 14 u16 num_long_packets; 15 u16 num_short_packets; 16 }; 17 18 #endif /* __CSI_RX_RMGR_H_INCLUDED__ */ 19