.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Driver for Virtual PS/2 Mouse on VMware and QEMU hypervisors. |
---|
3 | 4 | * |
---|
4 | 5 | * Copyright (C) 2014, VMware, Inc. All Rights Reserved. |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify it |
---|
7 | | - * under the terms of the GNU General Public License version 2 as published by |
---|
8 | | - * the Free Software Foundation. |
---|
9 | 6 | */ |
---|
10 | 7 | |
---|
11 | 8 | #ifndef _VMMOUSE_H |
---|
12 | 9 | #define _VMMOUSE_H |
---|
13 | 10 | |
---|
14 | | -#ifdef CONFIG_MOUSE_PS2_VMMOUSE |
---|
15 | 11 | #define VMMOUSE_PSNAME "VirtualPS/2" |
---|
16 | 12 | |
---|
17 | 13 | int vmmouse_detect(struct psmouse *psmouse, bool set_properties); |
---|
18 | 14 | int vmmouse_init(struct psmouse *psmouse); |
---|
19 | | -#else |
---|
20 | | -static inline int vmmouse_detect(struct psmouse *psmouse, bool set_properties) |
---|
21 | | -{ |
---|
22 | | - return -ENOSYS; |
---|
23 | | -} |
---|
24 | | -static inline int vmmouse_init(struct psmouse *psmouse) |
---|
25 | | -{ |
---|
26 | | - return -ENOSYS; |
---|
27 | | -} |
---|
28 | | -#endif |
---|
29 | 15 | |
---|
30 | 16 | #endif |
---|