From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=58915 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PmQMr-0004zX-Mh for qemu-devel@nongnu.org; Mon, 07 Feb 2011 07:38:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PmQMo-00089P-OV for qemu-devel@nongnu.org; Mon, 07 Feb 2011 07:38:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PmQMo-00089E-DA for qemu-devel@nongnu.org; Mon, 07 Feb 2011 07:38:54 -0500 From: Kevin Wolf Date: Mon, 7 Feb 2011 13:40:21 +0100 Message-Id: <1297082430-628-6-git-send-email-kwolf@redhat.com> In-Reply-To: <1297082430-628-1-git-send-email-kwolf@redhat.com> References: <1297082430-628-1-git-send-email-kwolf@redhat.com> Subject: [Qemu-devel] [PATCH 05/14] ahci: add license header in ahci.h List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: anthony@codemonkey.ws Cc: kwolf@redhat.com, qemu-devel@nongnu.org From: Alexander Graf Due to popular request, this patch adds a license header to ahci.h Signed-off-by: Alexander Graf Signed-off-by: Kevin Wolf --- 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.7.2.3