irproc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*********************************************************************
  2.  *                
  3.  * Filename:      irproc.c
  4.  * Version:       1.0
  5.  * Description:   Various entries in the /proc file system
  6.  * Status:        Experimental.
  7.  * Author:        Thomas Davis, <ratbert@radiks.net>
  8.  * Created at:    Sat Feb 21 21:33:24 1998
  9.  * Modified at:   Sun Nov 14 08:54:54 1999
  10.  * Modified by:   Dag Brattli <dagb@cs.uit.no>
  11.  *
  12.  *     Copyright (c) 1998-1999, Dag Brattli <dagb@cs.uit.no>
  13.  *     Copyright (c) 1998, Thomas Davis, <ratbert@radiks.net>, 
  14.  *     All Rights Reserved.
  15.  *      
  16.  *     This program is free software; you can redistribute it and/or 
  17.  *     modify it under the terms of the GNU General Public License as 
  18.  *     published by the Free Software Foundation; either version 2 of 
  19.  *     the License, or (at your option) any later version.
  20.  *  
  21.  *     I, Thomas Davis, provide no warranty for any of this software. 
  22.  *     This material is provided "AS-IS" and at no charge. 
  23.  *     
  24.  ********************************************************************/
  25. #include <linux/miscdevice.h>
  26. #include <linux/proc_fs.h>
  27. #define __NO_VERSION__
  28. #include <linux/module.h>
  29. #include <net/irda/irda.h>
  30. #include <net/irda/irmod.h>
  31. #include <net/irda/irlap.h>
  32. #include <net/irda/irlmp.h>
  33. extern int irlap_proc_read(char *buf, char **start, off_t offset, int len);
  34. extern int irlmp_proc_read(char *buf, char **start, off_t offset, int len);
  35. extern int irttp_proc_read(char *buf, char **start, off_t offset, int len);
  36. extern int irias_proc_read(char *buf, char **start, off_t offset, int len);
  37. extern int discovery_proc_read(char *buf, char **start, off_t offset, int len);
  38. struct irda_entry {
  39. char *name;
  40. int (*fn)(char*, char**, off_t, int);
  41. };
  42. struct proc_dir_entry *proc_irda;
  43.  
  44. static struct irda_entry dir[] = {
  45. {"discovery", discovery_proc_read},
  46. {"irttp", irttp_proc_read},
  47. {"irlmp", irlmp_proc_read},
  48. {"irlap", irlap_proc_read},
  49. {"irias", irias_proc_read},
  50. };
  51. #define IRDA_ENTRIES_NUM (sizeof(dir)/sizeof(dir[0]))
  52.  
  53. /*
  54.  * Function irda_proc_register (void)
  55.  *
  56.  *    Register irda entry in /proc file system
  57.  *
  58.  */
  59. void irda_proc_register(void) 
  60. {
  61. int i;
  62. proc_irda = proc_mkdir("net/irda", NULL);
  63. if (proc_irda == NULL)
  64. return;
  65. proc_irda->owner = THIS_MODULE;
  66. for (i=0;i<IRDA_ENTRIES_NUM;i++)
  67. create_proc_info_entry(dir[i].name,0,proc_irda,dir[i].fn);
  68. }
  69. /*
  70.  * Function irda_proc_unregister (void)
  71.  *
  72.  *    Unregister irda entry in /proc file system
  73.  *
  74.  */
  75. void irda_proc_unregister(void) 
  76. {
  77. int i;
  78.         if (proc_irda) {
  79.                 for (i=0;i<IRDA_ENTRIES_NUM;i++)
  80.                         remove_proc_entry(dir[i].name, proc_irda);
  81.                 remove_proc_entry("net/irda", NULL);
  82.                 proc_irda = NULL;
  83.         }
  84. }