22c213
From 044feb40e3041759ee77d08136f334cf3ad67c1e Mon Sep 17 00:00:00 2001
22c213
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
22c213
Date: Fri, 21 Feb 2020 09:49:23 +0000
22c213
Subject: [PATCH] vhost-user-gpu: Drop trailing json comma
22c213
MIME-Version: 1.0
22c213
Content-Type: text/plain; charset=UTF-8
22c213
Content-Transfer-Encoding: 8bit
22c213
22c213
RH-Author: Ján Tomko <jtomko@redhat.com>
22c213
Message-id: <07fed9a38495938a7180819e27f590d80cd6668d.1582278173.git.jtomko@redhat.com>
22c213
Patchwork-id: 94019
22c213
O-Subject: [RHEL-AV-8.2.0 qemu-kvm PATCH 1/1] vhost-user-gpu: Drop trailing json comma
22c213
Bugzilla: 1805334
22c213
RH-Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
22c213
RH-Acked-by: Sergio Lopez Pascual <slp@redhat.com>
22c213
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
22c213
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
22c213
22c213
From: Cole Robinson <crobinso@redhat.com>
22c213
22c213
Trailing comma is not valid json:
22c213
22c213
$ cat contrib/vhost-user-gpu/50-qemu-gpu.json.in | jq
22c213
parse error: Expected another key-value pair at line 5, column 1
22c213
22c213
Signed-off-by: Cole Robinson <crobinso@redhat.com>
22c213
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
22c213
Reviewed-by: Li Qiang <liq3ea@gmail.com>
22c213
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
22c213
Message-id: 7f5dd2ac9f3504e2699f23e69bc3d8051b729832.1568925097.git.crobinso@redhat.com
22c213
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
22c213
(cherry picked from commit ca26b032e5a0e8a190c763ce828a8740d24b9b65)
22c213
Signed-off-by: Ján Tomko <jtomko@redhat.com>
22c213
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
22c213
---
22c213
 contrib/vhost-user-gpu/50-qemu-gpu.json.in | 2 +-
22c213
 1 file changed, 1 insertion(+), 1 deletion(-)
22c213
22c213
diff --git a/contrib/vhost-user-gpu/50-qemu-gpu.json.in b/contrib/vhost-user-gpu/50-qemu-gpu.json.in
22c213
index 658b545..f5edd09 100644
22c213
--- a/contrib/vhost-user-gpu/50-qemu-gpu.json.in
22c213
+++ b/contrib/vhost-user-gpu/50-qemu-gpu.json.in
22c213
@@ -1,5 +1,5 @@
22c213
 {
22c213
   "description": "QEMU vhost-user-gpu",
22c213
   "type": "gpu",
22c213
-  "binary": "@libexecdir@/vhost-user-gpu",
22c213
+  "binary": "@libexecdir@/vhost-user-gpu"
22c213
 }
22c213
-- 
22c213
1.8.3.1
22c213