thinkpad-acpi: silence hotkey enable warning for module parameter
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / comedi / rt_pend_tq.h
blob01ed71bf409dc3157ab6bccbb4348f30524ca897
1 #define RT_PEND_TQ_SIZE 16
2 struct rt_pend_tq {
3 void (*func) (int arg1, void *arg2);
4 int arg1;
5 void *arg2;
6 };
7 extern int rt_pend_call(void (*func) (int arg1, void *arg2), int arg1,
8 void *arg2);
9 extern int rt_pend_tq_init(void);
10 extern void rt_pend_tq_cleanup(void);