Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754359AbbLTMrY (ORCPT ); Sun, 20 Dec 2015 07:47:24 -0500 Received: from p3plsmtps2ded01.prod.phx3.secureserver.net ([208.109.80.58]:42530 "EHLO p3plsmtps2ded01.prod.phx3.secureserver.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751425AbbLTMrX (ORCPT ); Sun, 20 Dec 2015 07:47:23 -0500 x-originating-ip: 72.167.245.219 From: Dexuan Cui To: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, driverdev-devel@linuxdriverproject.org, olaf@aepfle.de, apw@canonical.com, jasowang@redhat.com, kys@microsoft.com, vkuznets@redhat.com Cc: haiyangz@microsoft.com Subject: [PATCH] Drivers: hv: vmbus: fix the building warning with hyperv-keyboard Date: Sun, 20 Dec 2015 06:21:21 -0800 Message-Id: <1450621281-17010-1-git-send-email-decui@microsoft.com> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-CMAE-Envelope: MS4wfIE3QSayHlgf3pe7SoqZFzlyxsTBioZcuUVoM+7p2WjzpeORXZgEzX0Wbr+0gR6E+raD2JBCZJTh+bAcRNpXWYWy1aSHvfWiwDGmjk+UG8KNzOp3Nf0s 6aGZHKSry+3/qVSdaXnoSffX/dStubGMlPrUp3dPAEvhKlS7e6P2hsp5+U8Q6/J4kLbW7FfNgchDBMpp0KKIon1l9A39QWee9aheaaPJkLYeFzY+vLHBZexc qaf0yxjUGw0lBZK14zUp7nCmBB9FhY3Eoo0Q4qvGQM8f9qKnhobnEAIHOWMwmTdhWVbJcxER1ouK7L43tAAU1MhMMYba2Ky11rFjWu/jVHjP0giVdLbaaRZu pZEnJjoP20FWmoun8V61XQ4BF4PVJIm0jAPggPD8qrCUar1eWrpaGu5nUvt46I6HfHV9S+JkllCxr9D+I79YQxZ5LzkUHizTtBjc7nSppgPK7hxIahk= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2097 Lines: 68 With the recent change af3ff643ea91ba64dd8d0b1cbed54d44512f96cd (Drivers: hv: vmbus: Use uuid_le type consistently), we always get this warning: CC [M] drivers/input/serio/hyperv-keyboard.o drivers/input/serio/hyperv-keyboard.c:427:2: warning: missing braces around initializer [-Wmissing-braces] { HV_KBD_GUID, }, ^ drivers/input/serio/hyperv-keyboard.c:427:2: warning: (near initialization for ‘id_table[0].guid.b’) [-Wmissing-braces] The patch fixes the warning. Signed-off-by: Dexuan Cui --- drivers/input/serio/hyperv-keyboard.c | 10 ---------- include/linux/hyperv.h | 8 ++++++++ 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/drivers/input/serio/hyperv-keyboard.c b/drivers/input/serio/hyperv-keyboard.c index e74e5d6..c948866 100644 --- a/drivers/input/serio/hyperv-keyboard.c +++ b/drivers/input/serio/hyperv-keyboard.c @@ -412,16 +412,6 @@ static int hv_kbd_remove(struct hv_device *hv_dev) return 0; } -/* - * Keyboard GUID - * {f912ad6d-2b17-48ea-bd65-f927a61c7684} - */ -#define HV_KBD_GUID \ - .guid = { \ - 0x6d, 0xad, 0x12, 0xf9, 0x17, 0x2b, 0xea, 0x48, \ - 0xbd, 0x65, 0xf9, 0x27, 0xa6, 0x1c, 0x76, 0x84 \ - } - static const struct hv_vmbus_device_id id_table[] = { /* Keyboard guid */ { HV_KBD_GUID, }, diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 179ff33..753dbad 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -1079,6 +1079,14 @@ u64 hv_do_hypercall(u64 control, void *input, void *output); 0x8b, 0xa1, 0xa1, 0xf3, 0xf9, 0x5a) /* + * Keyboard GUID + * {f912ad6d-2b17-48ea-bd65-f927a61c7684} + */ +#define HV_KBD_GUID \ + .guid = UUID_LE(0xf912ad6d, 0x2b17, 0x48ea, 0xbd, 0x65, \ + 0xf9, 0x27, 0xa6, 0x1c, 0x76, 0x84) + +/* * VSS (Backup/Restore) GUID */ #define HV_VSS_GUID \ -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/