1234567891011121314151617181920212223 |
- #ifndef _LOGIPS2PP_H
- #define _LOGIPS2PP_H
- #ifdef CONFIG_MOUSE_PS2_LOGIPS2PP
- int ps2pp_detect(struct psmouse *psmouse, bool set_properties);
- #else
- static inline int ps2pp_detect(struct psmouse *psmouse, bool set_properties)
- {
- return -ENOSYS;
- }
- #endif
- #endif
|