mantis_input.h 821 B

123456789101112131415161718192021222324
  1. /*
  2. Mantis PCI bridge driver
  3. Copyright (C) Manu Abraham (abraham.manu@gmail.com)
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. */
  13. #ifndef __MANTIS_INPUT_H
  14. #define __MANTIS_INPUT_H
  15. int mantis_input_init(struct mantis_pci *mantis);
  16. void mantis_input_exit(struct mantis_pci *mantis);
  17. void mantis_input_process(struct mantis_pci *mantis, int scancode);
  18. #endif /* __MANTIS_UART_H */