From bbb2646dd577ef82c83d6b1b40bb0ea8ca967ccf Mon Sep 17 00:00:00 2001 From: rkujawa Date: Thu, 16 May 2013 21:25:27 +0000 Subject: Fix typo: s/300/500/ . --- sys/dev/i2c/tps65217pmic.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/i2c/tps65217pmic.c b/sys/dev/i2c/tps65217pmic.c index aad603dbf19..0d9bf05cbc2 100644 --- a/sys/dev/i2c/tps65217pmic.c +++ b/sys/dev/i2c/tps65217pmic.c @@ -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 -__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 #include @@ -341,7 +341,7 @@ tps65217pmic_ppath_max_ac_current(uint8_t ppath) 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_t ppath) 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: -- cgit