emtpy -> empty in comment.

This commit is contained in:
msaitoh 2024-05-13 00:25:23 +00:00
parent a11cd6f1fb
commit 441cf27377
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: gemini_gmacreg.h,v 1.3 2008/12/23 02:15:10 matt Exp $ */
/* $NetBSD: gemini_gmacreg.h,v 1.4 2024/05/13 00:25:23 msaitoh Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
* All rights reserved.
@ -125,10 +125,10 @@
#define INT1_TOE_IQ2_FULL __BIT(30) /* TOE Intr Queue2 Full */
#define INT1_TOE_IQ1_FULL __BIT(29) /* TOE Intr Queue1 Full */
#define INT1_TOE_IQ0_FULL __BIT(28) /* TOE Intr Queue0 Full */
#define INT1_TOE_IQ3_NONEMPTY __BIT(27) /* TOE Intr Queue3 !Emtpy */
#define INT1_TOE_IQ2_NONEMPTY __BIT(26) /* TOE Intr Queue2 !Emtpy */
#define INT1_TOE_IQ1_NONEMPTY __BIT(25) /* TOE Intr Queue1 !Emtpy */
#define INT1_TOE_IQ0_NONEMPTY __BIT(24) /* TOE Intr Queue0 !Emtpy */
#define INT1_TOE_IQ3_NONEMPTY __BIT(27) /* TOE Intr Queue3 !Empty */
#define INT1_TOE_IQ2_NONEMPTY __BIT(26) /* TOE Intr Queue2 !Empty */
#define INT1_TOE_IQ1_NONEMPTY __BIT(25) /* TOE Intr Queue1 !Empty */
#define INT1_TOE_IQ0_NONEMPTY __BIT(24) /* TOE Intr Queue0 !Empty */
#define INT1_HWTQ13_EOF __BIT(23) /* GMAC1 HW TX Queue3 EOF */
#define INT1_HWTQ12_EOF __BIT(22) /* GMAC1 HW TX Queue2 EOF */
#define INT1_HWTQ11_EOF __BIT(21) /* GMAC1 HW TX Queue1 EOF */

View File

@ -1,4 +1,4 @@
/* $NetBSD: mime_decode.c,v 1.17 2010/06/21 19:49:31 christos Exp $ */
/* $NetBSD: mime_decode.c,v 1.18 2024/05/13 00:25:23 msaitoh Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@ -34,7 +34,7 @@
#include <sys/cdefs.h>
#ifndef __lint__
__RCSID("$NetBSD: mime_decode.c,v 1.17 2010/06/21 19:49:31 christos Exp $");
__RCSID("$NetBSD: mime_decode.c,v 1.18 2024/05/13 00:25:23 msaitoh Exp $");
#endif /* not __lint__ */
#include <assert.h>
@ -111,7 +111,7 @@ __unused
static void
show_mime_info(FILE *fp, struct mime_info *mip, struct mime_info *end_mip)
{
for (/* EMTPY */; mip != end_mip; mip = mip->mi_flink)
for (/* EMPTY */; mip != end_mip; mip = mip->mi_flink)
show_one_mime_info(fp, mip);
(void)fprintf(fp, "++ =========\n");