Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/i2c Fix typo in string.



details:   https://anonhg.NetBSD.org/src/rev/bc528fa184b5
branches:  trunk
changeset: 346633:bc528fa184b5
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Sat Jul 23 19:14:36 2016 +0000

description:
Fix typo in string.

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

diffstat:

 sys/dev/i2c/as3722.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 81dd54f37539 -r bc528fa184b5 sys/dev/i2c/as3722.c
--- a/sys/dev/i2c/as3722.c      Sat Jul 23 18:02:10 2016 +0000
+++ b/sys/dev/i2c/as3722.c      Sat Jul 23 19:14:36 2016 +0000
@@ -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 <jmcneill%invisible.ca@localhost>
@@ -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 @@
        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,



Home | Main Index | Thread Index | Old Index