Staging
v0.6.0
https://github.com/torvalds/linux
Raw File
Tip revision: d1abaeb3be7b5fa6d7a1fbbd2e14e3310005c4c1 authored by Linus Torvalds on 18 August 2019, 21:31:08 UTC
Linux 5.3-rc5
Tip revision: d1abaeb
vmmouse.h
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Driver for Virtual PS/2 Mouse on VMware and QEMU hypervisors.
 *
 * Copyright (C) 2014, VMware, Inc. All Rights Reserved.
 */

#ifndef _VMMOUSE_H
#define _VMMOUSE_H

#ifdef CONFIG_MOUSE_PS2_VMMOUSE
#define VMMOUSE_PSNAME  "VirtualPS/2"

int vmmouse_detect(struct psmouse *psmouse, bool set_properties);
int vmmouse_init(struct psmouse *psmouse);
#else
static inline int vmmouse_detect(struct psmouse *psmouse, bool set_properties)
{
	return -ENOSYS;
}
static inline int vmmouse_init(struct psmouse *psmouse)
{
	return -ENOSYS;
}
#endif

#endif
back to top