cam_cal_define.h 413 B

1234567891011121314151617181920212223242526
  1. #ifndef _CAM_CAL_DATA_H
  2. #define _CAM_CAL_DATA_H
  3. #ifdef CONFIG_COMPAT
  4. /* 64 bit */
  5. #include <linux/fs.h>
  6. #include <linux/compat.h>
  7. #endif
  8. typedef struct{
  9. u32 u4Offset;
  10. u32 u4Length;
  11. u8 *pu1Params;
  12. } stCAM_CAL_INFO_STRUCT, *stPCAM_CAL_INFO_STRUCT;
  13. #ifdef CONFIG_COMPAT
  14. typedef struct{
  15. u32 u4Offset;
  16. u32 u4Length;
  17. compat_uptr_t pu1Params;
  18. } COMPAT_stCAM_CAL_INFO_STRUCT;
  19. #endif
  20. #endif/*_CAM_CAL_DATA_H*/