EDAC: i7core, sb_edac: Don't return NOTIFY_BAD from mce_decoder callback
[linux/fpc-iii.git] / drivers / input / mouse / byd.h
blobd6c120cf36cddbb8943dbcb866e9c5a8f55302b6
1 #ifndef _BYD_H
2 #define _BYD_H
4 #ifdef CONFIG_MOUSE_PS2_BYD
5 int byd_detect(struct psmouse *psmouse, bool set_properties);
6 int byd_init(struct psmouse *psmouse);
7 #else
8 static inline int byd_detect(struct psmouse *psmouse, bool set_properties)
10 return -ENOSYS;
12 static inline int byd_init(struct psmouse *psmouse)
14 return -ENOSYS;
16 #endif /* CONFIG_MOUSE_PS2_BYD */
18 #endif /* _BYD_H */