Module Name: src Committed By: rkujawa Date: Thu May 16 21:25:27 UTC 2013
Modified Files: src/sys/dev/i2c: tps65217pmic.c Log Message: Fix typo: s/300/500/ . To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/i2c/tps65217pmic.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/tps65217pmic.c diff -u src/sys/dev/i2c/tps65217pmic.c:1.4 src/sys/dev/i2c/tps65217pmic.c:1.5 --- src/sys/dev/i2c/tps65217pmic.c:1.4 Sun Apr 28 00:41:22 2013 +++ src/sys/dev/i2c/tps65217pmic.c Thu May 16 21:25:27 2013 @@ -1,4 +1,4 @@ -/* $NetBSD: tps65217pmic.c,v 1.4 2013/04/28 00:41:22 jakllsch Exp $ */ +/* $NetBSD: tps65217pmic.c,v 1.5 2013/05/16 21:25:27 rkujawa Exp $ */ /*- * Copyright (c) 2013 The NetBSD Foundation, Inc. @@ -35,7 +35,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: tps65217pmic.c,v 1.4 2013/04/28 00:41:22 jakllsch Exp $"); +__KERNEL_RCSID(0, "$NetBSD: tps65217pmic.c,v 1.5 2013/05/16 21:25:27 rkujawa Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -341,7 +341,7 @@ tps65217pmic_ppath_max_ac_current(uint8_ case TPS65217PMIC_PPATH_IAC_100MA: return 100; case TPS65217PMIC_PPATH_IAC_500MA: - return 300; + return 500; case TPS65217PMIC_PPATH_IAC_1300MA: return 1300; case TPS65217PMIC_PPATH_IAC_2500MA: @@ -357,7 +357,7 @@ tps65217pmic_ppath_max_usb_current(uint8 case TPS65217PMIC_PPATH_IUSB_100MA: return 100; case TPS65217PMIC_PPATH_IUSB_500MA: - return 300; + return 500; case TPS65217PMIC_PPATH_IUSB_1300MA: return 1300; case TPS65217PMIC_PPATH_IUSB_1800MA: