From 52d48b9ea39a990295fdaf53dea492637051bd10 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Mon, 28 Oct 2024 00:02:20 -0600 Subject: s/Licence/License/g --- libhw/CMakeLists.txt | 2 +- libhw/common_include/libhw/generic/net.h | 2 +- libhw/common_include/libhw/generic/spi.h | 2 +- libhw/host_include/libhw/host_net.h | 2 +- libhw/host_net.c | 2 +- libhw/rp2040_hwspi.c | 2 +- libhw/rp2040_include/libhw/rp2040_hwspi.h | 2 +- libhw/rp2040_include/libhw/w5500.h | 2 +- libhw/w5500.c | 6 +++--- libhw/w5500_ll.h | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) (limited to 'libhw') diff --git a/libhw/CMakeLists.txt b/libhw/CMakeLists.txt index ca58a72..521e697 100644 --- a/libhw/CMakeLists.txt +++ b/libhw/CMakeLists.txt @@ -1,7 +1,7 @@ # libhw/CMakeLists.txt - TODO # # Copyright (C) 2024 Luke T. Shumaker -# SPDX-Licence-Identifier: AGPL-3.0-or-later +# SPDX-License-Identifier: AGPL-3.0-or-later add_library(libhw INTERFACE) target_include_directories(libhw SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/common_include) diff --git a/libhw/common_include/libhw/generic/net.h b/libhw/common_include/libhw/generic/net.h index 40bcd3b..419a8f2 100644 --- a/libhw/common_include/libhw/generic/net.h +++ b/libhw/common_include/libhw/generic/net.h @@ -1,7 +1,7 @@ /* libhw/generic/net.h - Device-independent network definitions * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_GENERIC_NET_H_ diff --git a/libhw/common_include/libhw/generic/spi.h b/libhw/common_include/libhw/generic/spi.h index fcba84e..2207a2c 100644 --- a/libhw/common_include/libhw/generic/spi.h +++ b/libhw/common_include/libhw/generic/spi.h @@ -1,7 +1,7 @@ /* libhw/generic/spi.h - Device-independent SPI definitions * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_GENERIC_SPI_H_ diff --git a/libhw/host_include/libhw/host_net.h b/libhw/host_include/libhw/host_net.h index c74f0bd..7a0dff4 100644 --- a/libhw/host_include/libhw/host_net.h +++ b/libhw/host_include/libhw/host_net.h @@ -1,7 +1,7 @@ /* libhw/host_net.h - implementation for hosted glibc * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_HOST_NET_H_ diff --git a/libhw/host_net.c b/libhw/host_net.c index d71afee..fcdac57 100644 --- a/libhw/host_net.c +++ b/libhw/host_net.c @@ -1,7 +1,7 @@ /* libhw/host_net.c - implementation for hosted glibc * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #define _GNU_SOURCE /* for pthread_sigqueue(3gnu) */ diff --git a/libhw/rp2040_hwspi.c b/libhw/rp2040_hwspi.c index b041bc9..96c3d14 100644 --- a/libhw/rp2040_hwspi.c +++ b/libhw/rp2040_hwspi.c @@ -2,7 +2,7 @@ * ARM Primecell SSP (PL022) (implementation file) * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #include diff --git a/libhw/rp2040_include/libhw/rp2040_hwspi.h b/libhw/rp2040_include/libhw/rp2040_hwspi.h index 8e44e50..db8285d 100644 --- a/libhw/rp2040_include/libhw/rp2040_hwspi.h +++ b/libhw/rp2040_include/libhw/rp2040_hwspi.h @@ -2,7 +2,7 @@ * ARM Primecell SSP (PL022) (header file) * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_RP2040_HWSPI_H_ diff --git a/libhw/rp2040_include/libhw/w5500.h b/libhw/rp2040_include/libhw/w5500.h index 6b5a690..6f12c39 100644 --- a/libhw/rp2040_include/libhw/w5500.h +++ b/libhw/rp2040_include/libhw/w5500.h @@ -1,7 +1,7 @@ /* libhw/w5500.h - implementation for the WIZnet W5500 chip * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_W5500_H_ diff --git a/libhw/w5500.c b/libhw/w5500.c index 70881ee..a141fb3 100644 --- a/libhw/w5500.c +++ b/libhw/w5500.c @@ -1,7 +1,7 @@ /* libhw/w5500.c - implementation for the WIZnet W5500 chip * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/Ethernet/wizchip_conf.c @@ -37,7 +37,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * SPDX-Licence-Identifier: BSD-3-Clause + * SPDX-License-Identifier: BSD-3-Clause * * ----------------------------------------------------------------------------- * https://github.com/Wiznet/ioLibrary_Driver/blob/b981401e7f3d07015619adf44c13998e13e777f9/license.txt @@ -64,7 +64,7 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * - * SPDX-Licence-Identifier: MIT + * SPDX-License-Identifier: MIT */ #include /* for sleep_ms() */ diff --git a/libhw/w5500_ll.h b/libhw/w5500_ll.h index 57bfccd..db66f01 100644 --- a/libhw/w5500_ll.h +++ b/libhw/w5500_ll.h @@ -4,7 +4,7 @@ * https://docs.wiznet.io/img/products/w5500/W5500_ds_v110e.pdf * * Copyright (C) 2024 Luke T. Shumaker - * SPDX-Licence-Identifier: AGPL-3.0-or-later + * SPDX-License-Identifier: AGPL-3.0-or-later */ #ifndef _LIBHW_W5500_LL_H_ -- cgit v1.2.3-2-g168b