git: 4e2ddfba507f - main - ciss: Fix typo

From: Warner Losh <imp_at_FreeBSD.org>
Date: Mon, 08 May 2023 04:27:14 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=4e2ddfba507f045ed83ae5a7beb5ec6b8eb897c5

commit 4e2ddfba507f045ed83ae5a7beb5ec6b8eb897c5
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2023-05-08 04:25:01 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2023-05-08 04:25:01 +0000

    ciss: Fix typo
    
    Although unused, fixed type in CISS_BOARD_UNKNOWN #define.
    
    Submitted by: Peter Eriksson (a trivial part of D25155)
---
 sys/dev/ciss/ciss.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c
index 0a0d29f382a1..af460f8fcff2 100644
--- a/sys/dev/ciss/ciss.c
+++ b/sys/dev/ciss/ciss.c
@@ -279,7 +279,7 @@ TUNABLE_INT("hw.ciss.force_interrupt", &ciss_force_interrupt);
  * stick with matching against subvendor/subdevice, and thus have to
  * be updated for every new CISS adapter that appears.
  */
-#define CISS_BOARD_UNKNWON	0
+#define CISS_BOARD_UNKNOWN	0
 #define CISS_BOARD_SA5		1
 #define CISS_BOARD_SA5B		2
 #define CISS_BOARD_NOMSI	(1<<4)