Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * Fujitsu B-series Lifebook PS/2 TouchScreen driver
0004  *
0005  * Copyright (c) 2005 Vojtech Pavlik
0006  */
0007 
0008 #ifndef _LIFEBOOK_H
0009 #define _LIFEBOOK_H
0010 
0011 int lifebook_detect(struct psmouse *psmouse, bool set_properties);
0012 int lifebook_init(struct psmouse *psmouse);
0013 
0014 #ifdef CONFIG_MOUSE_PS2_LIFEBOOK
0015 void lifebook_module_init(void);
0016 #else
0017 static inline void lifebook_module_init(void)
0018 {
0019 }
0020 #endif
0021 
0022 #endif