Module Name:    src
Committed By:   jakllsch
Date:           Sat Jul 23 19:14:36 UTC 2016

Modified Files:
        src/sys/dev/i2c: as3722.c

Log Message:
Fix typo in string.

This is a driver for the AS3722 PMIC, not the AS3822 LED driver.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/as3722.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/as3722.c
diff -u src/sys/dev/i2c/as3722.c:1.4 src/sys/dev/i2c/as3722.c:1.5
--- src/sys/dev/i2c/as3722.c:1.4	Sun Dec 13 17:15:06 2015
+++ src/sys/dev/i2c/as3722.c	Sat Jul 23 19:14:36 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: as3722.c,v 1.4 2015/12/13 17:15:06 jmcneill Exp $ */
+/* $NetBSD: as3722.c,v 1.5 2016/07/23 19:14:36 jakllsch Exp $ */
 
 /*-
  * Copyright (c) 2015 Jared D. McNeill <jmcne...@invisible.ca>
@@ -27,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: as3722.c,v 1.4 2015/12/13 17:15:06 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: as3722.c,v 1.5 2016/07/23 19:14:36 jakllsch Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -133,7 +133,7 @@ as3722_attach(device_t parent, device_t 
 	sc->sc_addr = ia->ia_addr;
 
 	aprint_naive("\n");
-	aprint_normal(": AMS AS3822\n");
+	aprint_normal(": AMS AS3722\n");
 
 	iic_acquire_bus(sc->sc_i2c, I2C_F_POLL);
 	error = as3722_write(sc, AS3722_GPIO0_CTRL_REG,

Reply via email to