Module Name: src Committed By: skrll Date: Mon Dec 30 15:18:12 UTC 2024
Modified Files: src/sys/arch/arm/broadcom: bcm2835_intr.c src/sys/arch/riscv/fdt: intc_fdt.c Log Message: implementationm -> implementation To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/sys/arch/arm/broadcom/bcm2835_intr.c cvs rdiff -u -r1.6 -r1.7 src/sys/arch/riscv/fdt/intc_fdt.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/arm/broadcom/bcm2835_intr.c diff -u src/sys/arch/arm/broadcom/bcm2835_intr.c:1.45 src/sys/arch/arm/broadcom/bcm2835_intr.c:1.46 --- src/sys/arch/arm/broadcom/bcm2835_intr.c:1.45 Mon Oct 7 15:04:32 2024 +++ src/sys/arch/arm/broadcom/bcm2835_intr.c Mon Dec 30 15:18:12 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: bcm2835_intr.c,v 1.45 2024/10/07 15:04:32 andvar Exp $ */ +/* $NetBSD: bcm2835_intr.c,v 1.46 2024/12/30 15:18:12 skrll Exp $ */ /*- * Copyright (c) 2012, 2015, 2019 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: bcm2835_intr.c,v 1.45 2024/10/07 15:04:32 andvar Exp $"); +__KERNEL_RCSID(0, "$NetBSD: bcm2835_intr.c,v 1.46 2024/12/30 15:18:12 skrll Exp $"); #define _INTR_PRIVATE @@ -611,7 +611,7 @@ bcm2835_icu_fdt_establish(device_t dev, /* * XXX interrupt_distribute(9) assumes that any interrupt * handle can be used as an input to the MD interrupt_distribute - * implementationm, so we are forced to return the handle + * implementation, so we are forced to return the handle * we got back from intr_establish(). Upshot is that the * input to bcm2835_icu_fdt_disestablish() is ambiguous for * shared IRQs, rendering them un-disestablishable. Index: src/sys/arch/riscv/fdt/intc_fdt.c diff -u src/sys/arch/riscv/fdt/intc_fdt.c:1.6 src/sys/arch/riscv/fdt/intc_fdt.c:1.7 --- src/sys/arch/riscv/fdt/intc_fdt.c:1.6 Sun Jan 21 08:48:21 2024 +++ src/sys/arch/riscv/fdt/intc_fdt.c Mon Dec 30 15:18:11 2024 @@ -1,4 +1,4 @@ -/* $NetBSD: intc_fdt.c,v 1.6 2024/01/21 08:48:21 skrll Exp $ */ +/* $NetBSD: intc_fdt.c,v 1.7 2024/12/30 15:18:11 skrll Exp $ */ /*- * Copyright (c) 2023 The NetBSD Foundation, Inc. @@ -32,7 +32,7 @@ #include "opt_multiprocessor.h" #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: intc_fdt.c,v 1.6 2024/01/21 08:48:21 skrll Exp $"); +__KERNEL_RCSID(0, "$NetBSD: intc_fdt.c,v 1.7 2024/12/30 15:18:11 skrll Exp $"); #include <sys/param.h> @@ -186,7 +186,7 @@ intc_intr_establish(struct intc_fdt_soft /* * XXX interrupt_distribute(9) assumes that any interrupt * handle can be used as an input to the MD interrupt_distribute - * implementationm, so we are forced to return the handle + * implementation, so we are forced to return the handle * we got back from intr_establish(). Upshot is that the * input to bcm2835_icu_fdt_disestablish() is ambiguous for * shared IRQs, rendering them un-disestablishable.