From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46119) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WDtBI-0001lY-Sc for qemu-devel@nongnu.org; Thu, 13 Feb 2014 05:06:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WDtB9-00058Y-RT for qemu-devel@nongnu.org; Thu, 13 Feb 2014 05:06:08 -0500 Received: from e06smtp15.uk.ibm.com ([195.75.94.111]:44523) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WDtB9-00058S-Ha for qemu-devel@nongnu.org; Thu, 13 Feb 2014 05:05:59 -0500 Received: from /spool/local by e06smtp15.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Thu, 13 Feb 2014 10:05:58 -0000 Received: from b06cxnps3074.portsmouth.uk.ibm.com (d06relay09.portsmouth.uk.ibm.com [9.149.109.194]) by d06dlp01.portsmouth.uk.ibm.com (Postfix) with ESMTP id CC04A17D8062 for ; Thu, 13 Feb 2014 10:06:22 +0000 (GMT) Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by b06cxnps3074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id s1DA5hRv3211758 for ; Thu, 13 Feb 2014 10:05:43 GMT Received: from d06av11.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id s1DA5sRO013468 for ; Thu, 13 Feb 2014 03:05:55 -0700 Message-ID: <52FC9902.5030406@de.ibm.com> Date: Thu, 13 Feb 2014 11:05:54 +0100 From: Christian Borntraeger MIME-Version: 1.0 References: <1392283031-40129-1-git-send-email-borntraeger@de.ibm.com> <1392283031-40129-3-git-send-email-borntraeger@de.ibm.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PULL 2/3] s390-ccw.img: Fix sporadic errors with ccw boot image - initialize css List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-devel , Alexander Graf , Jens Freimann , Anthony Liguori , Cornelia Huck , =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= , Richard Henderson On 13/02/14 10:55, Peter Maydell wrote: > On 13 February 2014 09:17, Christian Borntraeger wrote: >> static void virtio_setup(uint64_t dev_info) >> { >> + struct subchannel_id blk_schid = { .one = 1}; > > Missing space before the "}" I think. checkpatch accepts both ways: a) struct subchannel_id blk_schid = { .one = 1}; b) struct subchannel_id blk_schid = { .one = 1 }; so, change it or keep it? Christian