diff options
author | Henrique de Moraes Holschuh <hmh@hmh.eng.br> | 2008-04-26 01:02:27 -0300 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-04-29 09:47:02 -0400 |
commit | 10cc92759bb5d6031d308bdde96775f74082bb44 (patch) | |
tree | 11dc56dee032fc7dc3eef1133362a0ad1fb77ee5 /drivers/misc/thinkpad_acpi.c | |
parent | 65807cc284dd291b024dd6e55de88feb16b4230a (diff) |
ACPI: thinkpad-acpi: fluff really minor fix
Fix a minor (nano?) thing that bothered me at exactly at the wrong time.
Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/misc/thinkpad_acpi.c')
-rw-r--r-- | drivers/misc/thinkpad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/thinkpad_acpi.c b/drivers/misc/thinkpad_acpi.c index 2ab3633f4e56..f471b46dcf5c 100644 --- a/drivers/misc/thinkpad_acpi.c +++ b/drivers/misc/thinkpad_acpi.c @@ -3881,7 +3881,7 @@ static int led_set_status(unsigned int led, enum led_status_t ledstatus) led * led_exp_hlbl[ledstatus]); if (rc >= 0) rc = ec_write(TPACPI_LED_EC_HLCL, - led * led_exp_hlcl[ledstatus]); + led * led_exp_hlcl[ledstatus]); break; case TPACPI_LED_NEW: /* all others */ |