From 2c34a35ad074fe0daf4a5010194ee067f3a2244c Mon Sep 17 00:00:00 2001 From: Simon Kuenzer Date: Tue, 13 Jul 2021 21:09:27 +0200 Subject: [PATCH] Correct license headers introduced by Arm Limited This commit removes the additional clause "THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY" from BSD license headers that got introduced by mistake with the following commits: 86a47bf - external plat: Add platform interface implementation (Haibo Xu) fa5c59f - external plat: Add the solo5 API declaration (Haibo Xu) On the one hand, this additional clause is redundant because the BSD license already states that it must remain and the copyright notice must be kept. On the other hand, the clause freezes the file header and prohibits future contributors from extending the copyright notice for their contributions. This additional clause is not part of the official BSD 3-clause. The original author(s) or an authorized representative from the author's affiliation consents to the change with a `Reviewed-by` tag to this commit. Signed-off-by: Simon Kuenzer Reviewed-by: Jia He Approved-by: Razvan Deaconescu Github-Pull-Request: #2 --- include/solo5/setup.h | 2 -- io.c | 2 -- lcpu.c | 2 -- memory.c | 2 -- time.c | 2 -- 5 files changed, 10 deletions(-) diff --git a/include/solo5/setup.h b/include/solo5/setup.h index 5936901..06e3f8a 100644 --- a/include/solo5/setup.h +++ b/include/solo5/setup.h @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #ifndef __SETUP_H__ diff --git a/io.c b/io.c index d430328..10abcfc 100644 --- a/io.c +++ b/io.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #include diff --git a/lcpu.c b/lcpu.c index 8aa1cb5..e242a33 100644 --- a/lcpu.c +++ b/lcpu.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #include diff --git a/memory.c b/memory.c index b266f09..8b8bfa0 100644 --- a/memory.c +++ b/memory.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #include diff --git a/time.c b/time.c index 3f18318..1922383 100644 --- a/time.c +++ b/time.c @@ -28,8 +28,6 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - * - * THIS HEADER MAY NOT BE EXTRACTED OR MODIFIED IN ANY WAY. */ #include -- 2.39.5