1 /* ---------------------------------------------------------------------------- 2 * touchkit_ps2.h -- Driver for eGalax TouchKit PS/2 Touchscreens 3 * 4 * Copyright (C) 2005 by Stefan Lucke 5 * Copyright (c) 2005 Vojtech Pavlik 6 * 7 * This program is free software; you can redistribute it and/or modify it 8 * under the terms of the GNU General Public License version 2 as published by 9 * the Free Software Foundation. 10 */ 11 12 #ifndef _TOUCHKIT_PS2_H 13 #define _TOUCHKIT_PS2_H 14 15 #ifdef CONFIG_MOUSE_PS2_TOUCHKIT 16 int touchkit_ps2_detect(struct psmouse *psmouse, bool set_properties); 17 #else 18 static inline int touchkit_ps2_detect(struct psmouse *psmouse, 19 bool set_properties) 20 { 21 return -ENOSYS; 22 } 23 #endif /* CONFIG_MOUSE_PS2_TOUCHKIT */ 24 25 #endif 26