irkey.h 242 B

123456789101112131415
  1. #ifndef DEVICE_IRKEY_H
  2. #define DEVICE_IRKEY_H
  3. #include "typedef.h"
  4. struct irkey_platform_data {
  5. u8 enable;
  6. u8 port;
  7. };
  8. extern u8 ir_get_key_value(void);
  9. extern int irkey_init(const struct irkey_platform_data *irkey_data);
  10. #endif