From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:54489) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xwvw7-0005rE-SD for qemu-devel@nongnu.org; Fri, 05 Dec 2014 11:41:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Xwvw3-0003c3-HQ for qemu-devel@nongnu.org; Fri, 05 Dec 2014 11:40:55 -0500 Received: from mail-lb0-f171.google.com ([209.85.217.171]:45255) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Xwvw3-0003bq-3h for qemu-devel@nongnu.org; Fri, 05 Dec 2014 11:40:51 -0500 Received: by mail-lb0-f171.google.com with SMTP id n15so847074lbi.2 for ; Fri, 05 Dec 2014 08:40:50 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1417371570-11789-6-git-send-email-eric.auger@linaro.org> References: <1417371570-11789-1-git-send-email-eric.auger@linaro.org> <1417371570-11789-6-git-send-email-eric.auger@linaro.org> From: Peter Maydell Date: Fri, 5 Dec 2014 16:40:30 +0000 Message-ID: Content-Type: text/plain; charset=UTF-8 Subject: Re: [Qemu-devel] [PATCH v5 5/6] hw/arm/sysbus-fdt: helpers for platform bus nodes addition List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Eric Auger Cc: Joel Schopp , Kim Phillips , eric.auger@st.com, Antonios Motakis , Alvise Rigo , manish.jaggi@caviumnetworks.com, Ard Biesheuvel , Will Deacon , QEMU Developers , Alexander Graf , Bharat Bhushan , Alex Williamson , Patch Tracking , Shannon Zhao , Stuart Yoder , Paolo Bonzini , "kvmarm@lists.cs.columbia.edu" , Christoffer Dall On 30 November 2014 at 18:19, Eric Auger wrote: > --- /dev/null > +++ b/hw/arm/sysbus-fdt.c > @@ -0,0 +1,180 @@ > +/* > + * ARM Platform Bus device tree generation helpers > + * > + * Copyright (c) 2014 Linaro Limited > + * > + * Authors: > + * Alex Graf > + * Eric Auger > + * > + * This program is free software; you can redistribute it and/or modify it > + * under the terms and conditions of the GNU General Public License, > + * version 2 or later, as published by the Free Software Foundation. but > diff --git a/include/hw/arm/sysbus-fdt.h b/include/hw/arm/sysbus-fdt.h > new file mode 100644 > index 0000000..d4bec85 > --- /dev/null > +++ b/include/hw/arm/sysbus-fdt.h > @@ -0,0 +1,50 @@ > +/* > + * Dynamic sysbus device tree node generation API > + * > + * Copyright Linaro Limited, 2014 > + * > + * Authors: > + * Alex Graf > + * Eric Auger > + * > + * This work is licensed under the terms of the GNU GPL, version 2. See > + * the COPYING file in the top-level directory. > + */ ...shouldn't the .c file and the .h file be under the same license? -- PMM