/*1* Fujitsu B-series Lifebook PS/2 TouchScreen driver2*3* Copyright (c) 2005 Vojtech Pavlik4*5* This program is free software; you can redistribute it and/or modify it6* under the terms of the GNU General Public License version 2 as published by7* the Free Software Foundation.8*/910#ifndef _LIFEBOOK_H11#define _LIFEBOOK_H1213#ifdef CONFIG_MOUSE_PS2_LIFEBOOK14void lifebook_module_init(void);15int lifebook_detect(struct psmouse *psmouse, bool set_properties);16int lifebook_init(struct psmouse *psmouse);17#else18inline void lifebook_module_init(void)19{20}21inline int lifebook_detect(struct psmouse *psmouse, bool set_properties)22{23return -ENOSYS;24}25inline int lifebook_init(struct psmouse *psmouse)26{27return -ENOSYS;28}29#endif3031#endif323334