s/diable/disable/ in comments.

This commit is contained in:
andvar 2023-08-01 20:50:11 +00:00
parent 18df4b598e
commit 55fed2c514
3 changed files with 9 additions and 9 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic79xx.c,v 1.68 2022/05/23 19:52:35 andvar Exp $ */
/* $NetBSD: aic79xx.c,v 1.69 2023/08/01 20:50:11 andvar Exp $ */
/*
* Core routines and tables shareable across OS platforms.
@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.68 2022/05/23 19:52:35 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.69 2023/08/01 20:50:11 andvar Exp $");
#include <dev/ic/aic79xx_osm.h>
#include <dev/ic/aic79xx_inline.h>
@ -6153,7 +6153,7 @@ ahd_init(struct ahd_softc *ahd)
goto init_done;
}
/* Diable current sensing. */
/* Disable current sensing. */
ahd_write_flexport(ahd, FLXADDR_ROMSTAT_CURSENSECTL, 0);
#ifdef AHD_DEBUG

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_ntwoc_pci.c,v 1.32 2022/05/24 06:28:01 andvar Exp $ */
/* $NetBSD: if_ntwoc_pci.c,v 1.33 2023/08/01 20:50:11 andvar Exp $ */
/*
* Copyright (c) 1998 Vixie Enterprises
@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: if_ntwoc_pci.c,v 1.32 2022/05/24 06:28:01 andvar Exp $");
__KERNEL_RCSID(0, "$NetBSD: if_ntwoc_pci.c,v 1.33 2023/08/01 20:50:11 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -323,7 +323,7 @@ ntwoc_pci_attach(device_t parent, device_t self, void *aux)
/*
* enable the RS422 tristate transmit
* diable clock output (use receiver clock for both)
* disable clock output (use receiver clock for both)
*/
frontend_cr |= (NTWOC_FECR_TE0 | NTWOC_FECR_TE1);
frontend_cr &= ~(NTWOC_FECR_ETC0 | NTWOC_FECR_ETC1);

View File

@ -1,4 +1,4 @@
/* $NetBSD: tdvfb.c,v 1.10 2021/08/07 16:19:14 thorpej Exp $ */
/* $NetBSD: tdvfb.c,v 1.11 2023/08/01 20:50:11 andvar Exp $ */
/*
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@ -49,7 +49,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: tdvfb.c,v 1.10 2021/08/07 16:19:14 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: tdvfb.c,v 1.11 2023/08/01 20:50:11 andvar Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -434,7 +434,7 @@ tdvfb_videomode_set(struct tdvfb_softc *sc)
tdvfb_cvg_unset(sc, TDV_OFF_FBIINIT0, TDV_FBIINIT0_FBI_RST |
TDV_FBIINIT0_FIFO_RST);
tdvfb_cvg_set(sc, TDV_OFF_FBIINIT2, TDV_FBIINIT2_DRAM_REFR);
/* diable access to FBIINIT regs */
/* disable access to FBIINIT regs */
pci_conf_write(sc->sc_pc, sc->sc_pcitag, TDV_INITENABLE_REG,
TDV_INITENABLE_EN_FIFO);
tdvfb_wait(sc);