|
|
8be556 |
From 3ada75990b91f65d086078feb7fd1c7324222d73 Mon Sep 17 00:00:00 2001
|
|
|
8be556 |
From: Xiao Wang <jasowang@redhat.com>
|
|
|
8be556 |
Date: Tue, 7 Jul 2015 09:18:26 +0200
|
|
|
8be556 |
Subject: [PATCH 138/217] virtio-input: make virtio devices follow usual naming
|
|
|
8be556 |
convention
|
|
|
8be556 |
|
|
|
8be556 |
Message-id: <1436260751-25015-24-git-send-email-jasowang@redhat.com>
|
|
|
8be556 |
Patchwork-id: 66798
|
|
|
8be556 |
O-Subject: [RHEL7.2 qemu-kvm-rhev PATCH V2 23/68] virtio-input: make virtio devices follow usual naming convention
|
|
|
8be556 |
Bugzilla: 1227343
|
|
|
8be556 |
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
8be556 |
RH-Acked-by: David Gibson <dgibson@redhat.com>
|
|
|
8be556 |
RH-Acked-by: Laurent Vivier <lvivier@redhat.com>
|
|
|
8be556 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
8be556 |
|
|
|
8be556 |
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
8be556 |
|
|
|
8be556 |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
8be556 |
(cherry picked from commit e63d114b8a81e22ff9295674ba64b21255d589ee)
|
|
|
8be556 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
8be556 |
---
|
|
|
8be556 |
include/hw/virtio/virtio-input.h | 8 ++++----
|
|
|
8be556 |
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
8be556 |
|
|
|
8be556 |
diff --git a/include/hw/virtio/virtio-input.h b/include/hw/virtio/virtio-input.h
|
|
|
8be556 |
index bcee355..8134178 100644
|
|
|
8be556 |
--- a/include/hw/virtio/virtio-input.h
|
|
|
8be556 |
+++ b/include/hw/virtio/virtio-input.h
|
|
|
8be556 |
@@ -40,10 +40,10 @@ typedef struct virtio_input_event virtio_input_event;
|
|
|
8be556 |
#define VIRTIO_INPUT_CLASS(klass) \
|
|
|
8be556 |
OBJECT_CLASS_CHECK(VirtIOInputClass, klass, TYPE_VIRTIO_INPUT)
|
|
|
8be556 |
|
|
|
8be556 |
-#define TYPE_VIRTIO_INPUT_HID "virtio-input-hid"
|
|
|
8be556 |
-#define TYPE_VIRTIO_KEYBOARD "virtio-keyboard"
|
|
|
8be556 |
-#define TYPE_VIRTIO_MOUSE "virtio-mouse"
|
|
|
8be556 |
-#define TYPE_VIRTIO_TABLET "virtio-tablet"
|
|
|
8be556 |
+#define TYPE_VIRTIO_INPUT_HID "virtio-input-hid-device"
|
|
|
8be556 |
+#define TYPE_VIRTIO_KEYBOARD "virtio-keyboard-device"
|
|
|
8be556 |
+#define TYPE_VIRTIO_MOUSE "virtio-mouse-device"
|
|
|
8be556 |
+#define TYPE_VIRTIO_TABLET "virtio-tablet-device"
|
|
|
8be556 |
|
|
|
8be556 |
#define VIRTIO_INPUT_HID(obj) \
|
|
|
8be556 |
OBJECT_CHECK(VirtIOInputHID, (obj), TYPE_VIRTIO_INPUT_HID)
|
|
|
8be556 |
--
|
|
|
8be556 |
1.8.3.1
|
|
|
8be556 |
|