From patchwork Fri Nov 9 14:56:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 198105 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 937F52C01C6 for ; Sat, 10 Nov 2012 02:30:59 +1100 (EST) Received: from localhost ([::1]:36768 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWq1L-00019D-55 for incoming@patchwork.ozlabs.org; Fri, 09 Nov 2012 09:57:23 -0500 Received: from eggs.gnu.org ([208.118.235.92]:55938) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWq05-00075t-NL for qemu-devel@nongnu.org; Fri, 09 Nov 2012 09:56:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TWpzv-0005XY-BM for qemu-devel@nongnu.org; Fri, 09 Nov 2012 09:56:05 -0500 Received: from mx1.redhat.com ([209.132.183.28]:14907) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TWpzv-0005Wo-2e for qemu-devel@nongnu.org; Fri, 09 Nov 2012 09:55:55 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qA9EtikO010587 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Fri, 9 Nov 2012 09:55:44 -0500 Received: from blackpad.lan.raisama.net (vpn1-4-237.gru2.redhat.com [10.97.4.237]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qA9Ethjs008325; Fri, 9 Nov 2012 09:55:43 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 66EAD203426; Fri, 9 Nov 2012 12:56:56 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Fri, 9 Nov 2012 12:56:45 -0200 Message-Id: <1352473012-20500-18-git-send-email-ehabkost@redhat.com> In-Reply-To: <1352473012-20500-1-git-send-email-ehabkost@redhat.com> References: <1352473012-20500-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: peter.maydell@linaro.org, riku.voipio@iki.fi, blauwirbel@gmail.com, Anthony Liguori , Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 17/24] qdev-properties.c: add copyright/license information X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Add copyright and license information, based on git log, and discussion at: http://article.gmane.org/gmane.comp.emulators.qemu/176405 Message-ID: <20121017201414.GA5665@otherpad.lan.raisama.net> The list of Copyright owners is huge, but I didn't think I really could leave any of the authors out of the list. Signed-off-by: Eduardo Habkost --- The only reason I am doing this is because: - I am going to mvoe some of the qdev-properties.c file to another file - I need to add a copyright/license header to the new file. See http://article.gmane.org/gmane.comp.emulators.qemu/176367 - So, I need to document the copyright/license of the current qdev-properties.c code I would really love to avoid this whole archaeology/legalese work, because I am not a lawyer. I am only doing that because of the "new files should have a copyright header" requirement. Cc: Amit Shah Cc: Anthony Liguori Cc: Anthony PERARD Cc: Blue Swirl Cc: Christian Borntraeger Cc: Christoph Egger Cc: David 'Digit' Turner Cc: Donald Dutile Cc: dunrong huang Cc: Gerd Hoffmann Cc: Isaku Yamahata Cc: Jan Kiszka Cc: Jan Kiszka Cc: Juan Quintela Cc: Kevin Wolf Cc: Kusanagi Kouichi Cc: Markus Armbruster Cc: Michael Roth Cc: Michael S. Tsirkin Cc: Paolo Bonzini Cc: Stefan Hajnoczi Cc: Stefan Weil Cc: Stefan Weil Cc: Zhi Yong Wu --- hw/qdev-properties.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/hw/qdev-properties.c b/hw/qdev-properties.c index 81d901c..ff5aa0a 100644 --- a/hw/qdev-properties.c +++ b/hw/qdev-properties.c @@ -1,3 +1,33 @@ +/* + * qdev property parsing and global properties + * + * Copyright (c) 2009-2010 Gerd Hoffmann + * Copyright (c) 2009 Christoph Egger + * Copyright (c) 2009-2010 Blue Swirl + * Copyright (c) 2009 Juan Quintela + * Copyright (c) 2010 Michael S. Tsirkin + * Copyright (c) 2010,2012 Stefan Weil + * Copyright (c) 2010-2012 Markus Armbruster + * Copyright (c) 2010 Kevin Wolf + * Copyright (c) 2010 Isaku Yamahata + * Copyright (c) 2011 David 'Digit' Turner + * Copyright (c) 2011-2012 Amit Shah + * Copyright (c) 2011 Kusanagi Kouichi + * Copyright (c) 2011-2012 Anthony Liguori + * Copyright (c) 2011 Donald Dutile + * Copyright (c) 2011-2012 Jan Kiszka + * Copyright (c) 2011-2012 Paolo Bonzini + * Copyright (c) 2012 Stefan Hajnoczi + * Copyright (c) 2012 dunrong huang + * Copyright (c) 2012 Michael Roth + * Copyright (c) 2012 Anthony PERARD + * Copyright (c) 2012 Christian Borntraeger + * Copyright (c) 2012 Zhi Yong Wu + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ + #include "net.h" #include "qdev.h" #include "qerror.h"