2019-06-04 15:11:33 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2005-05-29 14:30:22 +07:00
|
|
|
/*
|
|
|
|
* Fujitsu B-series Lifebook PS/2 TouchScreen driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 Vojtech Pavlik
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LIFEBOOK_H
|
|
|
|
#define _LIFEBOOK_H
|
|
|
|
|
2009-09-10 09:13:20 +07:00
|
|
|
int lifebook_detect(struct psmouse *psmouse, bool set_properties);
|
2005-05-29 14:30:32 +07:00
|
|
|
int lifebook_init(struct psmouse *psmouse);
|
2019-08-21 02:07:01 +07:00
|
|
|
|
|
|
|
#ifdef CONFIG_MOUSE_PS2_LIFEBOOK
|
|
|
|
void lifebook_module_init(void);
|
2007-03-10 13:39:54 +07:00
|
|
|
#else
|
2014-11-10 04:31:11 +07:00
|
|
|
static inline void lifebook_module_init(void)
|
2009-12-04 14:21:14 +07:00
|
|
|
{
|
|
|
|
}
|
2007-03-10 13:39:54 +07:00
|
|
|
#endif
|
2005-05-29 14:30:22 +07:00
|
|
|
|
|
|
|
#endif
|