From 02363b5e464e729366ca21421edcebad33f1237e Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Tue, 5 May 2020 20:48:50 +0200 Subject: treewide: Move "is part of the coreboot project" line in its own comment That makes it easier to identify "license only" headers (because they are now license only) Script line used for that: perl -i -p0e 's|/\*.*\n.*This file is part of the coreboot project.*\n.*\*|/* This file is part of the coreboot project. */\n/*|' # ...filelist... Change-Id: I2280b19972e37c36d8c67a67e0320296567fa4f6 Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/coreboot/+/41065 Tested-by: build bot (Jenkins) Reviewed-by: David Hendricks Reviewed-by: HAOUAS Elyes Reviewed-by: Paul Menzel Reviewed-by: Angel Pons --- src/soc/qualcomm/qcs405/blsp.c | 3 +-- src/soc/qualcomm/qcs405/bootblock.c | 3 +-- src/soc/qualcomm/qcs405/cbmem.c | 3 +-- src/soc/qualcomm/qcs405/i2c.c | 3 +-- src/soc/qualcomm/qcs405/include/soc/addressmap.h | 3 +-- src/soc/qualcomm/qcs405/include/soc/gpio.h | 3 +-- src/soc/qualcomm/qcs405/include/soc/memlayout.ld | 3 +-- src/soc/qualcomm/qcs405/include/soc/mmu.h | 3 +-- src/soc/qualcomm/qcs405/include/soc/qup.h | 3 +-- src/soc/qualcomm/qcs405/include/soc/symbols.h | 3 +-- src/soc/qualcomm/qcs405/include/soc/usb.h | 3 +-- src/soc/qualcomm/qcs405/mmu.c | 3 +-- src/soc/qualcomm/qcs405/qup.c | 3 +-- src/soc/qualcomm/qcs405/soc.c | 3 +-- src/soc/qualcomm/qcs405/timer.c | 3 +-- src/soc/qualcomm/qcs405/usb.c | 3 +-- 16 files changed, 16 insertions(+), 32 deletions(-) (limited to 'src/soc/qualcomm/qcs405') diff --git a/src/soc/qualcomm/qcs405/blsp.c b/src/soc/qualcomm/qcs405/blsp.c index 089d9e425b..93f232b590 100644 --- a/src/soc/qualcomm/qcs405/blsp.c +++ b/src/soc/qualcomm/qcs405/blsp.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/src/soc/qualcomm/qcs405/bootblock.c b/src/soc/qualcomm/qcs405/bootblock.c index 2539445a8f..dcfc84676b 100644 --- a/src/soc/qualcomm/qcs405/bootblock.c +++ b/src/soc/qualcomm/qcs405/bootblock.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/cbmem.c b/src/soc/qualcomm/qcs405/cbmem.c index ed408b0d9a..6a0fe9d2db 100644 --- a/src/soc/qualcomm/qcs405/cbmem.c +++ b/src/soc/qualcomm/qcs405/cbmem.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/i2c.c b/src/soc/qualcomm/qcs405/i2c.c index d762aa14e1..bc88bd6cee 100644 --- a/src/soc/qualcomm/qcs405/i2c.c +++ b/src/soc/qualcomm/qcs405/i2c.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/src/soc/qualcomm/qcs405/include/soc/addressmap.h b/src/soc/qualcomm/qcs405/include/soc/addressmap.h index 57472f4905..98f4467472 100644 --- a/src/soc/qualcomm/qcs405/include/soc/addressmap.h +++ b/src/soc/qualcomm/qcs405/include/soc/addressmap.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/include/soc/gpio.h b/src/soc/qualcomm/qcs405/include/soc/gpio.h index 0fdb7f79ae..9e665edea5 100644 --- a/src/soc/qualcomm/qcs405/include/soc/gpio.h +++ b/src/soc/qualcomm/qcs405/include/soc/gpio.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/include/soc/memlayout.ld b/src/soc/qualcomm/qcs405/include/soc/memlayout.ld index 3110fd15cc..f138fb75d1 100644 --- a/src/soc/qualcomm/qcs405/include/soc/memlayout.ld +++ b/src/soc/qualcomm/qcs405/include/soc/memlayout.ld @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/include/soc/mmu.h b/src/soc/qualcomm/qcs405/include/soc/mmu.h index fa3a56577a..a6a9fea26e 100644 --- a/src/soc/qualcomm/qcs405/include/soc/mmu.h +++ b/src/soc/qualcomm/qcs405/include/soc/mmu.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/include/soc/qup.h b/src/soc/qualcomm/qcs405/include/soc/qup.h index 17bdfabaa1..55f478dc1b 100644 --- a/src/soc/qualcomm/qcs405/include/soc/qup.h +++ b/src/soc/qualcomm/qcs405/include/soc/qup.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/src/soc/qualcomm/qcs405/include/soc/symbols.h b/src/soc/qualcomm/qcs405/include/soc/symbols.h index 1084eb974e..90f72969cd 100644 --- a/src/soc/qualcomm/qcs405/include/soc/symbols.h +++ b/src/soc/qualcomm/qcs405/include/soc/symbols.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/include/soc/usb.h b/src/soc/qualcomm/qcs405/include/soc/usb.h index 0c56183d2b..04ab3b6cd3 100644 --- a/src/soc/qualcomm/qcs405/include/soc/usb.h +++ b/src/soc/qualcomm/qcs405/include/soc/usb.h @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/mmu.c b/src/soc/qualcomm/qcs405/mmu.c index a4c618cf56..e6b70c078e 100644 --- a/src/soc/qualcomm/qcs405/mmu.c +++ b/src/soc/qualcomm/qcs405/mmu.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/qup.c b/src/soc/qualcomm/qcs405/qup.c index acbbdad565..cb9bad17da 100644 --- a/src/soc/qualcomm/qcs405/qup.c +++ b/src/soc/qualcomm/qcs405/qup.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are diff --git a/src/soc/qualcomm/qcs405/soc.c b/src/soc/qualcomm/qcs405/soc.c index ffa84a3641..5f11f73378 100644 --- a/src/soc/qualcomm/qcs405/soc.c +++ b/src/soc/qualcomm/qcs405/soc.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/timer.c b/src/soc/qualcomm/qcs405/timer.c index 595ff9b7a4..085344c331 100644 --- a/src/soc/qualcomm/qcs405/timer.c +++ b/src/soc/qualcomm/qcs405/timer.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and diff --git a/src/soc/qualcomm/qcs405/usb.c b/src/soc/qualcomm/qcs405/usb.c index d35c081bcb..1723fac438 100644 --- a/src/soc/qualcomm/qcs405/usb.c +++ b/src/soc/qualcomm/qcs405/usb.c @@ -1,6 +1,5 @@ +/* This file is part of the coreboot project. */ /* - * This file is part of the coreboot project. - * * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and -- cgit v1.2.3