Commit d384ea69 authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] fix typo in acpi video brightness changes.

Prevent possible null dereference due to misplaced ;
Signed-off-by: default avatarDave Jones <davej@redhat.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 6edad161
......@@ -1645,7 +1645,7 @@ static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
printk(KERN_WARNING PREFIX
"hhuuhhuu bug in acpi video driver.\n");
if (data->brightness);
if (data->brightness)
kfree(data->brightness->levels);
kfree(data->brightness);
kfree(data);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment