2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2014-09-13 08:24:47 +08:00
|
|
|
/*
|
|
|
|
* Focaltech TouchPad PS/2 mouse driver
|
|
|
|
*
|
|
|
|
* Copyright (c) 2014 Red Hat Inc.
|
2014-12-30 01:26:35 +08:00
|
|
|
* Copyright (c) 2014 Mathias Gottschlag <mgottschlag@gmail.com>
|
2014-09-13 08:24:47 +08:00
|
|
|
*
|
|
|
|
* Red Hat authors:
|
|
|
|
*
|
|
|
|
* Hans de Goede <hdegoede@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FOCALTECH_H
|
|
|
|
#define _FOCALTECH_H
|
|
|
|
|
|
|
|
int focaltech_detect(struct psmouse *psmouse, bool set_properties);
|
2015-11-28 12:52:36 +08:00
|
|
|
|
|
|
|
#ifdef CONFIG_MOUSE_PS2_FOCALTECH
|
2014-09-13 08:24:47 +08:00
|
|
|
int focaltech_init(struct psmouse *psmouse);
|
2015-11-28 12:52:36 +08:00
|
|
|
#else
|
|
|
|
static inline int focaltech_init(struct psmouse *psmouse)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
#endif
|
2014-09-13 08:24:47 +08:00
|
|
|
|
|
|
|
#endif
|