aal_control.h 248 B

123456789
  1. #ifndef __AAL_CONTROL_H__
  2. #define __AAL_CONTROL_H__
  3. #define AAL_TAG "[ALS/AAL]"
  4. #define AAL_LOG(fmt, args...) pr_debug(AAL_TAG fmt, ##args)
  5. #define AAL_ERR(fmt, args...) pr_err(AAL_TAG fmt, ##args)
  6. extern int aal_use;
  7. #endif