blob: d6c120cf36cddbb8943dbcb866e9c5a8f55302b6 [file] [log] [blame]
Chris Diamand98ee3772016-01-27 17:04:35 -08001#ifndef _BYD_H
2#define _BYD_H
3
4#ifdef CONFIG_MOUSE_PS2_BYD
5int byd_detect(struct psmouse *psmouse, bool set_properties);
6int byd_init(struct psmouse *psmouse);
7#else
8static inline int byd_detect(struct psmouse *psmouse, bool set_properties)
9{
10 return -ENOSYS;
11}
12static inline int byd_init(struct psmouse *psmouse)
13{
14 return -ENOSYS;
15}
16#endif /* CONFIG_MOUSE_PS2_BYD */
17
18#endif /* _BYD_H */