From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34918) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fxsq2-0006tS-0I for qemu-devel@nongnu.org; Thu, 06 Sep 2018 07:52:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fxspy-0002fp-Mu for qemu-devel@nongnu.org; Thu, 06 Sep 2018 07:52:41 -0400 References: <20180906055736.20256-1-mark.cave-ayland@ilande.co.uk> <20180906055736.20256-2-mark.cave-ayland@ilande.co.uk> From: Thomas Huth Message-ID: <0223f14f-ab9a-f593-afc0-b87549d94482@redhat.com> Date: Thu, 6 Sep 2018 13:52:31 +0200 MIME-Version: 1.0 In-Reply-To: <20180906055736.20256-2-mark.cave-ayland@ilande.co.uk> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 1/3] scsi: move lsi53c895a structures and defines into separate lsi53c895a.h file List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Mark Cave-Ayland , pbonzini@redhat.com, famz@redhat.com, hpoussin@reactos.org, rth@twiddle.net, peter.maydell@linaro.org, armbru@redhat.com, qemu-devel@nongnu.org, qemu-ppc@nongnu.org On 2018-09-06 07:57, Mark Cave-Ayland wrote: > There is also one small change to the new header file which is the addi= tion > of the previously missing LSI53C810 define. >=20 > Signed-off-by: Mark Cave-Ayland > --- > hw/scsi/lsi53c895a.c | 116 +----------------------------------= - > include/hw/scsi/lsi53c895a.h | 137 +++++++++++++++++++++++++++++++++++= ++++++++ > 2 files changed, 138 insertions(+), 115 deletions(-) > create mode 100644 include/hw/scsi/lsi53c895a.h [...] > diff --git a/include/hw/scsi/lsi53c895a.h b/include/hw/scsi/lsi53c895a.= h > new file mode 100644 > index 0000000000..d80cb78c69 > --- /dev/null > +++ b/include/hw/scsi/lsi53c895a.h > @@ -0,0 +1,137 @@ > +/* > + * QEMU LSI53C895A SCSI Host Bus Adapter emulation > + * > + * Copyright (c) 2006 CodeSourcery. > + * Written by Paul Brook > + * > + * This code is licensed under the LGPL. > + */ > + > +#ifndef LSI_H > +#define LSI_H > + > +#include "qemu/osdep.h" Please don't include osdep.h from a header, that should only be done from .c files. Thanks, Thomas