[Concept,09/18] ulib: Use the correct copyright message

Message ID 20250909151824.2327219-10-sjg@u-boot.org
State New
Headers
Series ulib: Complete initial U-Boot library |

Commit Message

Simon Glass Sept. 9, 2025, 3:18 p.m. UTC
  From: Simon Glass <sjg@chromium.org>

Canonical should be written with the 'Ltd.' suffix, so add this to a few
files that need it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/sandbox/cpu/u-boot-lib.lds | 2 +-
 examples/ulib/Makefile          | 2 +-
 examples/ulib/demo.c            | 2 +-
 include/u-boot-lib.h            | 2 +-
 lib/ulib/Makefile               | 2 +-
 lib/ulib/ulib.c                 | 2 +-
 test/ulib/ulib_test.c           | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)
  

Patch

diff --git a/arch/sandbox/cpu/u-boot-lib.lds b/arch/sandbox/cpu/u-boot-lib.lds
index f57292b0a8d..f5434780ad6 100644
--- a/arch/sandbox/cpu/u-boot-lib.lds
+++ b/arch/sandbox/cpu/u-boot-lib.lds
@@ -1,6 +1,6 @@ 
 /* SPDX-License-Identifier: GPL-2.0+ */
 /*
- * Copyright 2025 Canonical
+ * Copyright 2025 Canonical Ltd.
  * Written by Simon Glass <simon.glass@canonical.com>
  *
  * Linker script for U-Boot shared library (libu-boot.so)
diff --git a/examples/ulib/Makefile b/examples/ulib/Makefile
index 68862cc09f8..f70333a3b9b 100644
--- a/examples/ulib/Makefile
+++ b/examples/ulib/Makefile
@@ -2,7 +2,7 @@ 
 #
 # Standalone Makefile for U-Boot library examples
 #
-# Copyright 2025 Canonical
+# Copyright 2025 Canonical Ltd.
 # Written by Simon Glass <simon.glass@canonical.com>
 
 # This Makefile can be used to build the examples. See doc/develop/ulib.rst
diff --git a/examples/ulib/demo.c b/examples/ulib/demo.c
index 4b12e91b17e..2a9f7720beb 100644
--- a/examples/ulib/demo.c
+++ b/examples/ulib/demo.c
@@ -5,7 +5,7 @@ 
  * This demonstrates using U-Boot library functions in sandbox like os_*
  * from external programs.
  *
- * Copyright 2025 Canonical
+ * Copyright 2025 Canonical Ltd.
  * Written by Simon Glass <simon.glass@canonical.com>
  */
 
diff --git a/include/u-boot-lib.h b/include/u-boot-lib.h
index 7157ef6ba60..aabc77aa4eb 100644
--- a/include/u-boot-lib.h
+++ b/include/u-boot-lib.h
@@ -6,7 +6,7 @@ 
  *
  * Library functions must be individually accessed via their respective headers.
  *
- * Copyright 2025 Canonical
+ * Copyright 2025 Canonical Ltd.
  * Written by Simon Glass <simon.glass@canonical.com>
  */
 
diff --git a/lib/ulib/Makefile b/lib/ulib/Makefile
index baa45053d69..3b94780544b 100644
--- a/lib/ulib/Makefile
+++ b/lib/ulib/Makefile
@@ -1,6 +1,6 @@ 
 # SPDX-License-Identifier: GPL-2.0+
 
-# Copyright 2025 Canonical
+# Copyright 2025 Canonical Ltd.
 # Written by Simon Glass <simon.glass@canonical.com>
 
 obj-y += ulib.o
diff --git a/lib/ulib/ulib.c b/lib/ulib/ulib.c
index 03acbe93fd1..385faa60844 100644
--- a/lib/ulib/ulib.c
+++ b/lib/ulib/ulib.c
@@ -2,7 +2,7 @@ 
 /*
  * Simplified U-Boot library interface implementation
  *
- * Copyright 2025 Canonical
+ * Copyright 2025 Canonical Ltd.
  * Written by Simon Glass <simon.glass@canonical.com>
  */
 
diff --git a/test/ulib/ulib_test.c b/test/ulib/ulib_test.c
index 51b1c62e6b2..5daf949a74c 100644
--- a/test/ulib/ulib_test.c
+++ b/test/ulib/ulib_test.c
@@ -4,7 +4,7 @@ 
  *
  * This demonstrates linking against libu-boot.so and libu-boot.a
  *
- * Copyright 2025 Canonical
+ * Copyright 2025 Canonical Ltd.
  * Written by Simon Glass <simon.glass@canonical.com>
  */