Module Name: src Committed By: skrll Date: Thu Sep 29 06:58:51 UTC 2022
Modified Files: src/sys/arch/mips/alchemy: aubus.c src/sys/arch/mips/alchemy/dev: aupci.c if_aumac.c Log Message: Trailing whitespace To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/sys/arch/mips/alchemy/aubus.c cvs rdiff -u -r1.20 -r1.21 src/sys/arch/mips/alchemy/dev/aupci.c cvs rdiff -u -r1.50 -r1.51 src/sys/arch/mips/alchemy/dev/if_aumac.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/mips/alchemy/aubus.c diff -u src/sys/arch/mips/alchemy/aubus.c:1.25 src/sys/arch/mips/alchemy/aubus.c:1.26 --- src/sys/arch/mips/alchemy/aubus.c:1.25 Sat Aug 7 16:18:58 2021 +++ src/sys/arch/mips/alchemy/aubus.c Thu Sep 29 06:58:51 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: aubus.c,v 1.25 2021/08/07 16:18:58 thorpej Exp $ */ +/* $NetBSD: aubus.c,v 1.26 2022/09/29 06:58:51 skrll Exp $ */ /*- * Copyright (c) 2006 Itronix Inc. @@ -29,7 +29,7 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - */ + */ /* * Copyright 2001 Wasabi Systems, Inc. @@ -97,7 +97,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: aubus.c,v 1.25 2021/08/07 16:18:58 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: aubus.c,v 1.26 2022/09/29 06:58:51 skrll Exp $"); #include "locators.h" #define _MIPS_BUS_DMA_PRIVATE Index: src/sys/arch/mips/alchemy/dev/aupci.c diff -u src/sys/arch/mips/alchemy/dev/aupci.c:1.20 src/sys/arch/mips/alchemy/dev/aupci.c:1.21 --- src/sys/arch/mips/alchemy/dev/aupci.c:1.20 Sat Aug 7 16:18:58 2021 +++ src/sys/arch/mips/alchemy/dev/aupci.c Thu Sep 29 06:58:51 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: aupci.c,v 1.20 2021/08/07 16:18:58 thorpej Exp $ */ +/* $NetBSD: aupci.c,v 1.21 2022/09/29 06:58:51 skrll Exp $ */ /*- * Copyright (c) 2006 Itronix Inc. @@ -29,13 +29,13 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. - */ + */ #include "opt_pci.h" #include "pci.h" #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: aupci.c,v 1.20 2021/08/07 16:18:58 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: aupci.c,v 1.21 2022/09/29 06:58:51 skrll Exp $"); #include <sys/types.h> #include <sys/param.h> @@ -156,7 +156,7 @@ aupciattach(device_t parent, device_t se bus_addr_t mstart; struct pcibus_attach_args pba; #endif - + aupci_found = 1; sc->sc_dev = self; @@ -194,7 +194,7 @@ aupciattach(device_t parent, device_t se * their drivers.) */ cfg = AUPCI_CONFIG_CH | AUPCI_CONFIG_R1H | - AUPCI_CONFIG_R2H | AUPCI_CONFIG_AEN | + AUPCI_CONFIG_R2H | AUPCI_CONFIG_AEN | AUPCI_CONFIG_SM | AUPCI_CONFIG_ST | AUPCI_CONFIG_SIC_DATA; #else cfg = AUPCI_CONFIG_CH | AUPCI_CONFIG_R1H | @@ -373,7 +373,7 @@ aupci_conf_access(void *v, int dir, pcit splx(s); bus_space_unmap(sc->sc_cfgt, h, 256); - + /* if we got a PCI master abort, fail it */ if (status & AUPCI_CONFIG_EF) return false; Index: src/sys/arch/mips/alchemy/dev/if_aumac.c diff -u src/sys/arch/mips/alchemy/dev/if_aumac.c:1.50 src/sys/arch/mips/alchemy/dev/if_aumac.c:1.51 --- src/sys/arch/mips/alchemy/dev/if_aumac.c:1.50 Sun Sep 18 11:25:33 2022 +++ src/sys/arch/mips/alchemy/dev/if_aumac.c Thu Sep 29 06:58:51 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: if_aumac.c,v 1.50 2022/09/18 11:25:33 thorpej Exp $ */ +/* $NetBSD: if_aumac.c,v 1.51 2022/09/29 06:58:51 skrll Exp $ */ /* * Copyright (c) 2001 Wasabi Systems, Inc. @@ -46,7 +46,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_aumac.c,v 1.50 2022/09/18 11:25:33 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_aumac.c,v 1.51 2022/09/29 06:58:51 skrll Exp $"); @@ -635,7 +635,7 @@ aumac_rxintr(struct aumac_softc *sc) * Missed frames are a semi-frequent occurrence with this hardware, * and reporting of them just makes everything run slower and fills * the system log. Be silent. - * + * * Additionally, this missed bit indicates an error with the previous * packet, and not with this one! So PRINTERR is definitely wrong * here.