/include/linux/input/qci_kbd.h

https://github.com/airy09/android_kernel_sony_apq8064 · C Header · 29 lines · 8 code · 3 blank · 18 comment · 0 complexity · 6310b6c4101e0c5f96a9a9d8e7f6c66c MD5 · raw file

  1. /* Copyright (c) 2010, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. */
  13. #ifndef __QCI_KBD_H__
  14. #define __QCI_KBD_H__
  15. /**
  16. * struct qci_kbd_platform_data - platform data for keyboard
  17. * @repeat: enable or disable key repeate feature
  18. *
  19. * platform data structure for QCI keyboard driver.
  20. */
  21. struct qci_kbd_platform_data {
  22. bool repeat;
  23. bool standard_scancodes;
  24. bool kb_leds;
  25. };
  26. #endif /*__QCI_KBD_H__*/