From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=58151 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PkHa0-0001V0-JZ for qemu-devel@nongnu.org; Tue, 01 Feb 2011 09:51:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PkHZv-0003eR-K2 for qemu-devel@nongnu.org; Tue, 01 Feb 2011 09:51:40 -0500 Received: from cantor2.suse.de ([195.135.220.15]:50691 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PkHZv-0003ds-DS for qemu-devel@nongnu.org; Tue, 01 Feb 2011 09:51:35 -0500 From: Alexander Graf Date: Tue, 1 Feb 2011 15:51:27 +0100 Message-Id: <1296571892-12702-3-git-send-email-agraf@suse.de> In-Reply-To: <1296571892-12702-1-git-send-email-agraf@suse.de> References: <1296571892-12702-1-git-send-email-agraf@suse.de> Subject: [Qemu-devel] [PATCH 2/7] ahci: add license header in ahci.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel Developers Cc: Kevin Wolf , Joerg Roedel , Sebastian Herbszt Due to popular request, this patch adds a license header to ahci.h Signed-off-by: Alexander Graf --- hw/ide/ahci.h | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/hw/ide/ahci.h b/hw/ide/ahci.h index 63ef785..d65b5e3 100644 --- a/hw/ide/ahci.h +++ b/hw/ide/ahci.h @@ -1,3 +1,26 @@ +/* + * QEMU AHCI Emulation + * + * Copyright (c) 2010 qiaochong@loongson.cn + * Copyright (c) 2010 Roland Elek + * Copyright (c) 2010 Sebastian Herbszt + * Copyright (c) 2010 Alexander Graf + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, see . + * + */ + #ifndef HW_IDE_AHCI_H #define HW_IDE_AHCI_H -- 1.6.0.2