From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56285) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMakk-0000qy-7R for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aMakg-0001bF-6f for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:46 -0500 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:47748) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aMakf-0001au-SM for qemu-devel@nongnu.org; Fri, 22 Jan 2016 07:23:42 -0500 Received: from localhost by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 22 Jan 2016 12:23:39 -0000 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp02.portsmouth.uk.ibm.com (Postfix) with ESMTP id DC12F219005C for ; Fri, 22 Jan 2016 12:23:25 +0000 (GMT) Received: from d06av08.portsmouth.uk.ibm.com (d06av08.portsmouth.uk.ibm.com [9.149.37.249]) by b06cxnps3074.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u0MCNclB61997106 for ; Fri, 22 Jan 2016 12:23:38 GMT Received: from d06av08.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u0MCNb3F029646 for ; Fri, 22 Jan 2016 05:23:37 -0700 From: Cornelia Huck Date: Fri, 22 Jan 2016 13:23:25 +0100 Message-Id: <1453465413-12846-3-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1453465413-12846-1-git-send-email-cornelia.huck@de.ibm.com> References: <1453465413-12846-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PATCH 02/10] s390x/machine: make addon register fields static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Cornelia Huck , borntraeger@de.ibm.com, jfrei@linux.vnet.ibm.com, agraf@suse.de From: Christian Borntraeger No need to have them as global symbol. Acked-by: Cornelia Huck Signed-off-by: Christian Borntraeger Signed-off-by: Cornelia Huck --- target-s390x/machine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-s390x/machine.c b/target-s390x/machine.c index b76fb08..96ad0a9 100644 --- a/target-s390x/machine.c +++ b/target-s390x/machine.c @@ -48,7 +48,7 @@ static inline bool fpu_needed(void *opaque) return true; } -const VMStateDescription vmstate_fpu = { +static const VMStateDescription vmstate_fpu = { .name = "cpu/fpu", .version_id = 1, .minimum_version_id = 1, @@ -75,7 +75,7 @@ const VMStateDescription vmstate_fpu = { } }; -const VMStateDescription vmstate_vregs = { +static const VMStateDescription vmstate_vregs = { .name = "cpu/vregs", .version_id = 1, .minimum_version_id = 1, -- 2.7.0