1 /* 2 * Copyright 2021 NXP 3 * All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 #ifndef _FSL_SOC_MIPI_DSI_H_ 8 #define _FSL_SOC_MIPI_DSI_H_ 9 10 #include "fsl_common.h" 11 12 /*! 13 * @addtogroup soc_mipi_dsi 14 * @{ 15 */ 16 17 /******************************************************************************* 18 * Definitions 19 ******************************************************************************/ 20 21 /* Component ID definition, used by tools. */ 22 #ifndef FSL_COMPONENT_ID 23 #define FSL_COMPONENT_ID "platform.drivers.soc_mipi_dsi" 24 #endif 25 26 /*! @name Driver version */ 27 /*@{*/ 28 /*! @brief Driver version 2.0.0. */ 29 #define FSL_SOC_MIPI_DSI_DRIVER_VERSION (MAKE_VERSION(2, 0, 0)) 30 /*@}*/ 31 32 /******************************************************************************* 33 * API 34 ******************************************************************************/ 35 36 #ifdef __cplusplus 37 extern "C" { 38 #endif 39 40 #ifdef __cplusplus 41 } 42 #endif 43 44 /*! 45 * @} 46 */ 47 48 #endif /* _FSL_SOC_MIPI_DSI_H_ */ 49