git: 9476c1675c53 - main - lm75: fix typo

From: Wojciech Macek <wma_at_FreeBSD.org>
Date: Mon, 05 Dec 2022 06:30:38 UTC
The branch main has been updated by wma:

URL: https://cgit.FreeBSD.org/src/commit/?id=9476c1675c5388c9d246fc7412e8a6558f0c60d9

commit 9476c1675c5388c9d246fc7412e8a6558f0c60d9
Author:     Wojciech Macek <wma@FreeBSD.org>
AuthorDate: 2022-12-05 06:30:12 +0000
Commit:     Wojciech Macek <wma@FreeBSD.org>
CommitDate: 2022-12-05 06:30:12 +0000

    lm75: fix typo
    
    s/sesnor/sensor/
---
 sys/dev/iicbus/lm75.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/dev/iicbus/lm75.c b/sys/dev/iicbus/lm75.c
index bbc88050b488..de09445a9ed0 100644
--- a/sys/dev/iicbus/lm75.c
+++ b/sys/dev/iicbus/lm75.c
@@ -307,7 +307,7 @@ lm75_start(void *xdev)
 	 * This may not work for LM75 clones.
 	 */
 	if (lm75_type_detect(sc) != 0) {
-		device_printf(dev, "cannot detect sesnor.\n");
+		device_printf(dev, "cannot detect sensor.\n");
 #ifndef FDT
 		return;
 #endif