From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39174) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOkS3-0005cG-MW for qemu-devel@nongnu.org; Thu, 28 Jan 2016 06:09:24 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aOkS1-0000YM-0P for qemu-devel@nongnu.org; Thu, 28 Jan 2016 06:09:23 -0500 Received: from e06smtp09.uk.ibm.com ([195.75.94.105]:57240) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aOkS0-0000Xo-Mb for qemu-devel@nongnu.org; Thu, 28 Jan 2016 06:09:20 -0500 Received: from localhost by e06smtp09.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 28 Jan 2016 11:09:17 -0000 Received: from b06cxnps4076.portsmouth.uk.ibm.com (d06relay13.portsmouth.uk.ibm.com [9.149.109.198]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 515F61B08072 for ; Thu, 28 Jan 2016 11:09:24 +0000 (GMT) Received: from d06av01.portsmouth.uk.ibm.com (d06av01.portsmouth.uk.ibm.com [9.149.37.212]) by b06cxnps4076.portsmouth.uk.ibm.com (8.14.9/8.14.9/NCO v10.0) with ESMTP id u0SB9G8I5439902 for ; Thu, 28 Jan 2016 11:09:16 GMT Received: from d06av01.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av01.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id u0SB9F6E010999 for ; Thu, 28 Jan 2016 04:09:15 -0700 From: Cornelia Huck Date: Thu, 28 Jan 2016 12:09:03 +0100 Message-Id: <1453979351-13089-3-git-send-email-cornelia.huck@de.ibm.com> In-Reply-To: <1453979351-13089-1-git-send-email-cornelia.huck@de.ibm.com> References: <1453979351-13089-1-git-send-email-cornelia.huck@de.ibm.com> Subject: [Qemu-devel] [PULL 02/10] s390x/machine: make addon register fields static List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: peter.maydell@linaro.org Cc: Cornelia Huck , borntraeger@de.ibm.com, jfrei@linux.vnet.ibm.com, qemu-devel@nongnu.org, 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