From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Huth Subject: [kvm-unit-tests PATCH 1/3] Add LGPL information to some ARM and PPC specific library files Date: Wed, 3 May 2017 13:50:27 +0200 Message-ID: <1493812229-21037-2-git-send-email-thuth@redhat.com> References: <1493812229-21037-1-git-send-email-thuth@redhat.com> Cc: pbonzini@redhat.com, drjones@redhat.com, david@redhat.com, lvivier@redhat.com To: kvm@vger.kernel.org, rkrcmar@redhat.com Return-path: Received: from mx1.redhat.com ([209.132.183.28]:58184 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751446AbdECLus (ORCPT ); Wed, 3 May 2017 07:50:48 -0400 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8BDCD61B9D for ; Wed, 3 May 2017 11:50:47 +0000 (UTC) In-Reply-To: <1493812229-21037-1-git-send-email-thuth@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: Some files are still lacking license information, so add the default LGPL statement here to make it clear under which conditions the code can be used. Signed-off-by: Thomas Huth --- lib/arm/spinlock.c | 6 ++++++ lib/powerpc/processor.c | 3 +++ lib/ppc64/spinlock.c | 7 +++++++ 3 files changed, 16 insertions(+) diff --git a/lib/arm/spinlock.c b/lib/arm/spinlock.c index 116ea5d..ea7e02b 100644 --- a/lib/arm/spinlock.c +++ b/lib/arm/spinlock.c @@ -1,3 +1,9 @@ +/* + * ARM spinlock implementation + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ #include #include #include diff --git a/lib/powerpc/processor.c b/lib/powerpc/processor.c index 056a61f..8910f24 100644 --- a/lib/powerpc/processor.c +++ b/lib/powerpc/processor.c @@ -1,5 +1,8 @@ /* * processor control and status function + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. */ #include diff --git a/lib/ppc64/spinlock.c b/lib/ppc64/spinlock.c index 522f8d0..1b26ee1 100644 --- a/lib/ppc64/spinlock.c +++ b/lib/ppc64/spinlock.c @@ -1,3 +1,10 @@ +/* + * ppc64 (dummy) spinlock implementation + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ + #include void spin_lock(struct spinlock *lock) -- 1.8.3.1