diff options
author | David Woodhouse <David.Woodhouse@intel.com> | 2010-08-11 12:59:51 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-08-11 13:00:52 -0400 |
commit | 2016e4a0a1c49b68c9d820e28dadab7080c45d1b (patch) | |
tree | 6d69dc0ad0ec90c30f301f76f49a06330a7449fe /drivers/platform | |
parent | ce326329d72238196d61312d1cf1556ebaf94da7 (diff) |
ideapad: Only allow camera state to be set to 0 or 1
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/ideapad_acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/ideapad_acpi.c b/drivers/platform/x86/ideapad_acpi.c index 8a89902e5d55..798496353e8c 100644 --- a/drivers/platform/x86/ideapad_acpi.c +++ b/drivers/platform/x86/ideapad_acpi.c | |||
@@ -140,7 +140,7 @@ static ssize_t store_ideapad_cam(struct device *dev, | |||
140 | return 0; | 140 | return 0; |
141 | if (sscanf(buf, "%i", &state) != 1) | 141 | if (sscanf(buf, "%i", &state) != 1) |
142 | return -EINVAL; | 142 | return -EINVAL; |
143 | ret = ideapad_dev_set_state(IDEAPAD_DEV_CAMERA, state); | 143 | ret = ideapad_dev_set_state(IDEAPAD_DEV_CAMERA, !!state); |
144 | if (ret < 0) | 144 | if (ret < 0) |
145 | return ret; | 145 | return ret; |
146 | return count; | 146 | return count; |