dgnc_tty.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Copyright 2003 Digi International (www.digi.com)
  3. * Scott H Kilau <Scott_Kilau at digi dot com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2, or (at your option)
  8. * any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED; without even the
  12. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  13. * PURPOSE. See the GNU General Public License for more details.
  14. */
  15. #ifndef __DGNC_TTY_H
  16. #define __DGNC_TTY_H
  17. #include "dgnc_driver.h"
  18. int dgnc_tty_register(struct dgnc_board *brd);
  19. int dgnc_tty_preinit(void);
  20. int dgnc_tty_init(struct dgnc_board *);
  21. void dgnc_tty_post_uninit(void);
  22. void dgnc_tty_uninit(struct dgnc_board *);
  23. void dgnc_input(struct channel_t *ch);
  24. void dgnc_carrier(struct channel_t *ch);
  25. void dgnc_wakeup_writes(struct channel_t *ch);
  26. void dgnc_check_queue_flow_control(struct channel_t *ch);
  27. #endif