Loading...
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Focaltech TouchPad PS/2 mouse driver
4 *
5 * Copyright (c) 2014 Red Hat Inc.
6 * Copyright (c) 2014 Mathias Gottschlag <mgottschlag@gmail.com>
7 *
8 * Red Hat authors:
9 *
10 * Hans de Goede <hdegoede@redhat.com>
11 */
12
13#ifndef _FOCALTECH_H
14#define _FOCALTECH_H
15
16int focaltech_detect(struct psmouse *psmouse, bool set_properties);
17
18#ifdef CONFIG_MOUSE_PS2_FOCALTECH
19int focaltech_init(struct psmouse *psmouse);
20#else
21static inline int focaltech_init(struct psmouse *psmouse)
22{
23 return -ENOSYS;
24}
25#endif
26
27#endif
1/*
2 * Focaltech TouchPad PS/2 mouse driver
3 *
4 * Copyright (c) 2014 Red Hat Inc.
5 * Copyright (c) 2014 Mathias Gottschlag <mgottschlag@gmail.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * Red Hat authors:
13 *
14 * Hans de Goede <hdegoede@redhat.com>
15 */
16
17#ifndef _FOCALTECH_H
18#define _FOCALTECH_H
19
20int focaltech_detect(struct psmouse *psmouse, bool set_properties);
21
22#ifdef CONFIG_MOUSE_PS2_FOCALTECH
23int focaltech_init(struct psmouse *psmouse);
24#else
25static inline int focaltech_init(struct psmouse *psmouse)
26{
27 return -ENOSYS;
28}
29#endif
30
31#endif