mhl_rcp_inputdev.h 926 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. SiI8348 Linux Driver
  3. Copyright (C) 2013 Silicon Image, Inc.
  4. This program is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU General Public License as
  6. published by the Free Software Foundation version 2.
  7. This program is distributed AS-IS WITHOUT ANY WARRANTY of any
  8. kind, whether express or implied; INCLUDING without the implied warranty
  9. of MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE or NON-INFRINGEMENT. See
  10. the GNU General Public License for more details at http://www.gnu.org/licenses/gpl-2.0.html.
  11. */
  12. #ifndef _MHL_RCP_INPUTDEV_H_
  13. #define _MHL_RCP_INPUTDEV_H_
  14. struct mhl_dev_context;
  15. int generate_rcp_input_event(struct mhl_dev_context *dev_context,
  16. uint8_t rcp_keycode);
  17. uint8_t init_rcp_input_dev(struct mhl_dev_context *dev_context);
  18. void destroy_rcp_input_dev(struct mhl_dev_context *dev_context);
  19. #endif /* #ifndef _MHL_RCP_INPUTDEV_H_ */