[U-Boot] [PATCH] vexpress64: fix a typo of SPDX-License-Identifier

Misspelling of SPDX-License-Identifier is rather fatal than other general typos, so must be fixed.
This file spells SPDX-Licence-Identifier. ^
I also moved it to the very top of the file with // comment style.
Detected by grepping the source tree:
$ git grep --not -e SPDX-License-Identifier --and -e SPDX- board/armltd/vexpress64/pcie.c: * SPDX-Licence-Identifier: GPL-2.0+
Signed-off-by: Masahiro Yamada yamada.masahiro@socionext.com ---
board/armltd/vexpress64/pcie.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/board/armltd/vexpress64/pcie.c b/board/armltd/vexpress64/pcie.c index 0608a5a88b94..21156a4ca94f 100644 --- a/board/armltd/vexpress64/pcie.c +++ b/board/armltd/vexpress64/pcie.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (C) ARM Ltd 2015 * * Author: Liviu Dudau Liviu.Dudau@arm.com - * - * SPDX-Licence-Identifier: GPL-2.0+ */
#include <common.h>

On Tue, Jun 18, 2019 at 12:25:51PM +0900, Masahiro Yamada wrote:
Misspelling of SPDX-License-Identifier is rather fatal than other general typos, so must be fixed.
This file spells SPDX-Licence-Identifier. ^
I also moved it to the very top of the file with // comment style.
Detected by grepping the source tree:
$ git grep --not -e SPDX-License-Identifier --and -e SPDX- board/armltd/vexpress64/pcie.c: * SPDX-Licence-Identifier: GPL-2.0+
Signed-off-by: Masahiro Yamada yamada.masahiro@socionext.com
Acked-by: Liviu Dudau liviu.dudau@foss.arm.com
Thanks for the fix!
Best regards, Liviu
board/armltd/vexpress64/pcie.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/board/armltd/vexpress64/pcie.c b/board/armltd/vexpress64/pcie.c index 0608a5a88b94..21156a4ca94f 100644 --- a/board/armltd/vexpress64/pcie.c +++ b/board/armltd/vexpress64/pcie.c @@ -1,9 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0+ /*
- Copyright (C) ARM Ltd 2015
- Author: Liviu Dudau Liviu.Dudau@arm.com
*/
- SPDX-Licence-Identifier: GPL-2.0+
#include <common.h>
2.17.1

On Tue, Jun 18, 2019 at 12:25:51PM +0900, Masahiro Yamada wrote:
Misspelling of SPDX-License-Identifier is rather fatal than other general typos, so must be fixed.
This file spells SPDX-Licence-Identifier. ^
I also moved it to the very top of the file with // comment style.
Detected by grepping the source tree:
$ git grep --not -e SPDX-License-Identifier --and -e SPDX- board/armltd/vexpress64/pcie.c: * SPDX-Licence-Identifier: GPL-2.0+
Signed-off-by: Masahiro Yamada yamada.masahiro@socionext.com Acked-by: Liviu Dudau liviu.dudau@foss.arm.com
Applied to u-boot/master, thanks!
participants (3)
-
Liviu Dudau
-
Masahiro Yamada
-
Tom Rini