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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __NWBUTTON_H
  2. #define __NWBUTTON_H
  3. /*
  4.  *  NetWinder Button Driver-
  5.  * Copyright (C) Alex Holden <alex@linuxhacker.org> 1998, 1999.
  6.  */
  7. #ifdef __NWBUTTON_C /* Actually compiling the driver itself */
  8. /* Various defines: */
  9. #define NUM_PRESSES_REBOOT 2 /* How many presses to activate shutdown */
  10. #define BUTTON_DELAY 30  /* How many jiffies for sequence to end */
  11. #define VERSION "0.3" /* Driver version number */
  12. #define BUTTON_MINOR 158 /* Major 10, Minor 158, /dev/nwbutton */
  13. /* Structure definitions: */
  14. struct button_callback {
  15. void (*callback) (void);
  16. int count;
  17. };
  18. /* Function prototypes: */
  19. static void button_sequence_finished (unsigned long parameters);
  20. static void button_handler (int irq, void *dev_id, struct pt_regs *regs);
  21. static int button_read (struct file *filp, char *buffer,
  22. size_t count, loff_t *ppos);
  23. int button_init (void);
  24. int button_add_callback (void (*callback) (void), int count);
  25. int button_del_callback (void (*callback) (void));
  26. static void button_consume_callbacks (int bpcount);
  27. #ifdef MODULE
  28. int init_module (void);
  29. void cleanup_module (void);
  30. #endif /* MODULE */
  31. #else /* Not compiling the driver itself */
  32. extern int button_add_callback (void (*callback) (void), int count);
  33. extern int button_del_callback (void (*callback) (void));
  34. #endif /* __NWBUTTON_C */
  35. #endif /* __NWBUTTON_H */