diff options
Diffstat (limited to 'drivers/power/olpc_battery.c')
-rw-r--r-- | drivers/power/olpc_battery.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/drivers/power/olpc_battery.c b/drivers/power/olpc_battery.c index d5fe6f0c9de0..c8b596a7fc94 100644 --- a/drivers/power/olpc_battery.c +++ b/drivers/power/olpc_battery.c | |||
@@ -389,8 +389,14 @@ static int __init olpc_bat_init(void) | |||
389 | 389 | ||
390 | if (!olpc_platform_info.ecver) | 390 | if (!olpc_platform_info.ecver) |
391 | return -ENXIO; | 391 | return -ENXIO; |
392 | if (olpc_platform_info.ecver < 0x43) { | 392 | |
393 | printk(KERN_NOTICE "OLPC EC version 0x%02x too old for battery driver.\n", olpc_platform_info.ecver); | 393 | /* |
394 | * We've seen a number of EC protocol changes; this driver requires | ||
395 | * the latest EC protocol, supported by 0x44 and above. | ||
396 | */ | ||
397 | if (olpc_platform_info.ecver < 0x44) { | ||
398 | printk(KERN_NOTICE "OLPC EC version 0x%02x too old for " | ||
399 | "battery driver.\n", olpc_platform_info.ecver); | ||
394 | return -ENXIO; | 400 | return -ENXIO; |
395 | } | 401 | } |
396 | 402 | ||