Path: blob/master/drivers/input/mouse/touchkit_ps2.h
15111 views
/* ----------------------------------------------------------------------------1* touchkit_ps2.h -- Driver for eGalax TouchKit PS/2 Touchscreens2*3* Copyright (C) 2005 by Stefan Lucke4* Copyright (c) 2005 Vojtech Pavlik5*6* This program is free software; you can redistribute it and/or modify it7* under the terms of the GNU General Public License version 2 as published by8* the Free Software Foundation.9*/1011#ifndef _TOUCHKIT_PS2_H12#define _TOUCHKIT_PS2_H1314#ifdef CONFIG_MOUSE_PS2_TOUCHKIT15int touchkit_ps2_detect(struct psmouse *psmouse, bool set_properties);16#else17static inline int touchkit_ps2_detect(struct psmouse *psmouse,18bool set_properties)19{20return -ENOSYS;21}22#endif /* CONFIG_MOUSE_PS2_TOUCHKIT */2324#endif252627