Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.0-rc5 19 lines 429 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _BYD_H 3#define _BYD_H 4 5#ifdef CONFIG_MOUSE_PS2_BYD 6int byd_detect(struct psmouse *psmouse, bool set_properties); 7int byd_init(struct psmouse *psmouse); 8#else 9static inline int byd_detect(struct psmouse *psmouse, bool set_properties) 10{ 11 return -ENOSYS; 12} 13static inline int byd_init(struct psmouse *psmouse) 14{ 15 return -ENOSYS; 16} 17#endif /* CONFIG_MOUSE_PS2_BYD */ 18 19#endif /* _BYD_H */