1 //////////////////////////////////////////////////////////////////////////////// 2 // 3 // Copyright (c) 2006-2007 MStar Semiconductor, Inc. 4 // All rights reserved. 5 // 6 // Unless otherwise stipulated in writing, any and all information contained 7 // herein regardless in any format shall remain the sole proprietary of 8 // MStar Semiconductor Inc. and be kept in strict confidence 9 // (��MStar Confidential Information��) by the recipient. 10 // Any unauthorized act including without limitation unauthorized disclosure, 11 // copying, use, reproduction, sale, distribution, modification, disassembling, 12 // reverse engineering and compiling of the contents of MStar Confidential 13 // Information is unlawful and strictly prohibited. MStar hereby reserves the 14 // rights to any and all damages, losses, costs and expenses resulting therefrom. 15 // 16 //////////////////////////////////////////////////////////////////////////////// 17 18 #ifndef __DRV_SYSTEM_ST_H__ 19 #define __DRV_SYSTEM_ST_H__ 20 21 //------------------------------------------------------------------------------ 22 // Data structure 23 //------------------------------------------------------------------------------ 24 25 typedef struct IO_SYS_SPI_s 26 { 27 U32 u32Start; 28 U32 u32Len; 29 U8 *u8data; 30 } IO_SYS_SPI_t; 31 32 33 #endif // __DRV_SYSTEM_ST_H__ 34 35