accel_factory.h 289 B

1234567891011121314151617
  1. #ifndef __ACC_FACTORY_H__
  2. #define __ACC_FACTORY_H__
  3. #include <linux/uaccess.h>
  4. #include <sensors_io.h>
  5. #include "cust_acc.h"
  6. #include "accel.h"
  7. extern struct acc_context *acc_context_obj;
  8. #define SETCALI 1
  9. #define CLRCALI 2
  10. #define GETCALI 3
  11. int acc_factory_device_init(void);
  12. #endif