public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/5] power_supply: fix up olpc_battery's eeprom read function
@ 2009-06-30  6:14 Andres Salomon
  2009-06-30 22:57 ` Anton Vorontsov
  0 siblings, 1 reply; 2+ messages in thread
From: Andres Salomon @ 2009-06-30  6:14 UTC (permalink / raw)
  To: cbou; +Cc: dwmw2, linux-kernel, richard, Andrew Morton, Paul Fox, dsaxena


The eeprom read function was placing values into the wrong place in
'buf'; we were starting from buf[off], rather than buf[0].

Also, the for loop that we were using was much uglier than it needed to
be.  This cleans it up a bit.

Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>
---
 drivers/power/olpc_battery.c |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/drivers/power/olpc_battery.c b/drivers/power/olpc_battery.c
index 0d1928d..d2df0db 100644
--- a/drivers/power/olpc_battery.c
+++ b/drivers/power/olpc_battery.c
@@ -343,21 +343,19 @@ static ssize_t olpc_bat_eeprom_read(struct kobject *kobj,
 		struct bin_attribute *attr, char *buf, loff_t off, size_t count)
 {
 	uint8_t ec_byte;
-	int ret, end;
+	int ret, i;
 
 	if (off >= EEPROM_SIZE)
 		return 0;
 	if (off + count > EEPROM_SIZE)
 		count = EEPROM_SIZE - off;
 
-	end = EEPROM_START + off + count;
-	for (ec_byte = EEPROM_START + off; ec_byte < end; ec_byte++) {
-		ret = olpc_ec_cmd(EC_BAT_EEPROM, &ec_byte, 1,
-				&buf[ec_byte - EEPROM_START], 1);
+	for (i = 0; i < count; i++) {
+		ec_byte = EEPROM_START + off + i;
+		ret = olpc_ec_cmd(EC_BAT_EEPROM, &ec_byte, 1, &buf[i], 1);
 		if (ret) {
-			printk(KERN_ERR "olpc-battery:  EC command "
-					"EC_BAT_EEPROM @ 0x%x failed -"
-					" %d!\n", ec_byte, ret);
+			printk(KERN_ERR "olpc-battery:  EC_BAT_EEPROM cmd @ 0x%x failed - %d!\n",
+					ec_byte, ret);
 			return -EIO;
 		}
 	}
-- 
1.5.6.5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 2/5] power_supply: fix up olpc_battery's eeprom read function
  2009-06-30  6:14 [PATCH 2/5] power_supply: fix up olpc_battery's eeprom read function Andres Salomon
@ 2009-06-30 22:57 ` Anton Vorontsov
  0 siblings, 0 replies; 2+ messages in thread
From: Anton Vorontsov @ 2009-06-30 22:57 UTC (permalink / raw)
  To: Andres Salomon
  Cc: cbou, dwmw2, linux-kernel, richard, Andrew Morton, Paul Fox,
	dsaxena

On Tue, Jun 30, 2009 at 02:14:00AM -0400, Andres Salomon wrote:
> 
> The eeprom read function was placing values into the wrong place in
> 'buf'; we were starting from buf[off], rather than buf[0].
> 
> Also, the for loop that we were using was much uglier than it needed to
> be.  This cleans it up a bit.
> 
> Signed-off-by: Andres Salomon <dilinger@collabora.co.uk>

Applied to battery-2.6.31.git w/ some cosmtic changes.
Please ensure that everything is OK.

Thanks!

> ---
>  drivers/power/olpc_battery.c |   14 ++++++--------
>  1 files changed, 6 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/power/olpc_battery.c b/drivers/power/olpc_battery.c
> index 0d1928d..d2df0db 100644
> --- a/drivers/power/olpc_battery.c
> +++ b/drivers/power/olpc_battery.c
> @@ -343,21 +343,19 @@ static ssize_t olpc_bat_eeprom_read(struct kobject *kobj,
>  		struct bin_attribute *attr, char *buf, loff_t off, size_t count)
>  {
>  	uint8_t ec_byte;
> -	int ret, end;
> +	int ret, i;
>  
>  	if (off >= EEPROM_SIZE)
>  		return 0;
>  	if (off + count > EEPROM_SIZE)
>  		count = EEPROM_SIZE - off;
>  
> -	end = EEPROM_START + off + count;
> -	for (ec_byte = EEPROM_START + off; ec_byte < end; ec_byte++) {
> -		ret = olpc_ec_cmd(EC_BAT_EEPROM, &ec_byte, 1,
> -				&buf[ec_byte - EEPROM_START], 1);
> +	for (i = 0; i < count; i++) {
> +		ec_byte = EEPROM_START + off + i;
> +		ret = olpc_ec_cmd(EC_BAT_EEPROM, &ec_byte, 1, &buf[i], 1);
>  		if (ret) {
> -			printk(KERN_ERR "olpc-battery:  EC command "
> -					"EC_BAT_EEPROM @ 0x%x failed -"
> -					" %d!\n", ec_byte, ret);
> +			printk(KERN_ERR "olpc-battery:  EC_BAT_EEPROM cmd @ 0x%x failed - %d!\n",
> +					ec_byte, ret);
>  			return -EIO;
>  		}
>  	}
> -- 
> 1.5.6.5
> 

-- 
Anton Vorontsov
email: cbouatmailru@gmail.com
irc://irc.freenode.net/bd2

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-06-30 22:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-30  6:14 [PATCH 2/5] power_supply: fix up olpc_battery's eeprom read function Andres Salomon
2009-06-30 22:57 ` Anton Vorontsov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox