Module Name: src Committed By: khorben Date: Thu Feb 28 16:56:35 UTC 2019
Modified Files: src/sys/dev/i2c: sdtemp.c src/sys/dev/pci: if_wm.c if_wmreg.h pci_subr.c Log Message: Typo (s/vaule/value/) To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/dev/i2c/sdtemp.c cvs rdiff -u -r1.628 -r1.629 src/sys/dev/pci/if_wm.c cvs rdiff -u -r1.112 -r1.113 src/sys/dev/pci/if_wmreg.h cvs rdiff -u -r1.210 -r1.211 src/sys/dev/pci/pci_subr.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/dev/i2c/sdtemp.c diff -u src/sys/dev/i2c/sdtemp.c:1.34 src/sys/dev/i2c/sdtemp.c:1.35 --- src/sys/dev/i2c/sdtemp.c:1.34 Sat Jun 16 21:22:13 2018 +++ src/sys/dev/i2c/sdtemp.c Thu Feb 28 16:56:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: sdtemp.c,v 1.34 2018/06/16 21:22:13 thorpej Exp $ */ +/* $NetBSD: sdtemp.c,v 1.35 2019/02/28 16:56:35 khorben Exp $ */ /* * Copyright (c) 2009 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.34 2018/06/16 21:22:13 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sdtemp.c,v 1.35 2019/02/28 16:56:35 khorben Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -297,7 +297,7 @@ sdtemp_attach(device_t parent, device_t * IDT's devices and some Microchip's devices have the resolution * register in the vendor specific registers area. The devices' * resolution bits in the capability register are not the maximum - * resolution but the current vaule of the setting. + * resolution but the current value of the setting. */ if (sdtemp_dev_table[i].sdtemp_config != NULL) sdtemp_dev_table[i].sdtemp_config(sc); Index: src/sys/dev/pci/if_wm.c diff -u src/sys/dev/pci/if_wm.c:1.628 src/sys/dev/pci/if_wm.c:1.629 --- src/sys/dev/pci/if_wm.c:1.628 Sat Feb 23 11:41:08 2019 +++ src/sys/dev/pci/if_wm.c Thu Feb 28 16:56:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: if_wm.c,v 1.628 2019/02/23 11:41:08 kamil Exp $ */ +/* $NetBSD: if_wm.c,v 1.629 2019/02/28 16:56:35 khorben Exp $ */ /* * Copyright (c) 2001, 2002, 2003, 2004 Wasabi Systems, Inc. @@ -82,7 +82,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.628 2019/02/23 11:41:08 kamil Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if_wm.c,v 1.629 2019/02/28 16:56:35 khorben Exp $"); #ifdef _KERNEL_OPT #include "opt_net_mpsafe.h" @@ -13482,7 +13482,7 @@ wm_nvm_version(struct wm_softc *sc) * 82572EI 0x5069 5.6.9? * 82574L 0x1080 1.8.0? (the spec update notes about 2.1.4) * 0x2013 2.1.3? - * 82583 0x10a0 1.10.0? (document says it's default vaule) + * 82583 0x10a0 1.10.0? (document says it's default value) */ /* Index: src/sys/dev/pci/if_wmreg.h diff -u src/sys/dev/pci/if_wmreg.h:1.112 src/sys/dev/pci/if_wmreg.h:1.113 --- src/sys/dev/pci/if_wmreg.h:1.112 Thu Jan 31 05:20:49 2019 +++ src/sys/dev/pci/if_wmreg.h Thu Feb 28 16:56:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: if_wmreg.h,v 1.112 2019/01/31 05:20:49 msaitoh Exp $ */ +/* $NetBSD: if_wmreg.h,v 1.113 2019/02/28 16:56:35 khorben Exp $ */ /* * Copyright (c) 2001 Wasabi Systems, Inc. @@ -1493,7 +1493,7 @@ struct livengood_tcpip_ctxdesc { #define WM_INVM_DATA_REG(reg) (0x12120 + 4*(reg)) #define INVM_SIZE 64 /* Number of INVM Data Registers */ -/* iNVM default vaule */ +/* iNVM default value */ #define NVM_INIT_CTRL_2_DEFAULT_I211 0x7243 #define NVM_INIT_CTRL_4_DEFAULT_I211 0x00c1 #define NVM_LED_1_CFG_DEFAULT_I211 0x0184 Index: src/sys/dev/pci/pci_subr.c diff -u src/sys/dev/pci/pci_subr.c:1.210 src/sys/dev/pci/pci_subr.c:1.211 --- src/sys/dev/pci/pci_subr.c:1.210 Fri Nov 30 10:18:37 2018 +++ src/sys/dev/pci/pci_subr.c Thu Feb 28 16:56:35 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: pci_subr.c,v 1.210 2018/11/30 10:18:37 msaitoh Exp $ */ +/* $NetBSD: pci_subr.c,v 1.211 2019/02/28 16:56:35 khorben Exp $ */ /* * Copyright (c) 1997 Zubin D. Dittia. All rights reserved. @@ -40,7 +40,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.210 2018/11/30 10:18:37 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pci_subr.c,v 1.211 2019/02/28 16:56:35 khorben Exp $"); #ifdef _KERNEL_OPT #include "opt_pci.h" @@ -3726,7 +3726,7 @@ pci_conf_print_tph_req_cap(const pcireg_ printf("Device Specific Mode\n"); break; default: - printf("(reserved vaule)\n"); + printf("(reserved value)\n"); break; } printf(" TPH Requester Enable: "); @@ -3741,7 +3741,7 @@ pci_conf_print_tph_req_cap(const pcireg_ printf("TPH and Extended TPH"); break; default: - printf("(reserved vaule)\n"); + printf("(reserved value)\n"); break; }