serio.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: serio.c,v 1.5 2000/06/04 17:44:59 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1999-2000 Vojtech Pavlik
  5.  *
  6.  *  Sponsored by SuSE
  7.  */
  8. /*
  9.  *  The Serio abstraction module
  10.  */
  11. /*
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or 
  15.  * (at your option) any later version.
  16.  * 
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  * 
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  25.  * 
  26.  * Should you need to contact me, the author, you can do so either by
  27.  * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
  28.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  29.  */
  30. #include <linux/stddef.h>
  31. #include <linux/module.h>
  32. #include <linux/serio.h>
  33. MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
  34. MODULE_LICENSE("GPL");
  35. EXPORT_SYMBOL(serio_register_port);
  36. EXPORT_SYMBOL(serio_unregister_port);
  37. EXPORT_SYMBOL(serio_register_device);
  38. EXPORT_SYMBOL(serio_unregister_device);
  39. EXPORT_SYMBOL(serio_open);
  40. EXPORT_SYMBOL(serio_close);
  41. EXPORT_SYMBOL(serio_rescan);
  42. static struct serio *serio_list;
  43. static struct serio_dev *serio_dev;
  44. static int serio_number;
  45. static void serio_find_dev(struct serio *serio)
  46. {
  47.         struct serio_dev *dev = serio_dev;
  48.         while (dev && !serio->dev) {
  49. if (dev->connect)
  50.                  dev->connect(serio, dev);
  51.                 dev = dev->next;
  52.         }
  53. }
  54. void serio_rescan(struct serio *serio)
  55. {
  56. if (serio->dev && serio->dev->disconnect)
  57. serio->dev->disconnect(serio);
  58. serio_find_dev(serio);
  59. }
  60. void serio_register_port(struct serio *serio)
  61. {
  62. serio->number = serio_number++;
  63. serio->next = serio_list;
  64. serio_list = serio;
  65. serio_find_dev(serio);
  66. }
  67. void serio_unregister_port(struct serio *serio)
  68. {
  69.         struct serio **serioptr = &serio_list;
  70.         while (*serioptr && (*serioptr != serio)) serioptr = &((*serioptr)->next);
  71.         *serioptr = (*serioptr)->next;
  72. if (serio->dev && serio->dev->disconnect)
  73. serio->dev->disconnect(serio);
  74. serio_number--;
  75. }
  76. void serio_register_device(struct serio_dev *dev)
  77. {
  78. struct serio *serio = serio_list;
  79. dev->next = serio_dev;
  80. serio_dev = dev;
  81. while (serio) {
  82. if (!serio->dev && dev->connect)
  83. dev->connect(serio, dev);
  84. serio = serio->next;
  85. }
  86. }
  87. void serio_unregister_device(struct serio_dev *dev)
  88. {
  89.         struct serio_dev **devptr = &serio_dev;
  90. struct serio *serio = serio_list;
  91.         while (*devptr && (*devptr != dev)) devptr = &((*devptr)->next);
  92.         *devptr = (*devptr)->next;
  93. while (serio) {
  94. if (serio->dev == dev && dev->disconnect)
  95. dev->disconnect(serio);
  96. serio_find_dev(serio);
  97. serio = serio->next;
  98. }
  99. }
  100. int serio_open(struct serio *serio, struct serio_dev *dev)
  101. {
  102. if (serio->open(serio))
  103. return -1;
  104. serio->dev = dev;
  105. return 0;
  106. }
  107. void serio_close(struct serio *serio)
  108. {
  109. serio->close(serio);
  110. serio->dev = NULL;
  111. }