staging: greybus: light: check the correct value of delay_on

When checking the value of delay_on to set the channel as active, it was
checked the pointer and not the value, as it should be.

Fixes: cc43368a3c ("greybus: lights: Control runtime pm suspend/resume on AP side")

Signed-off-by: Rui Miguel Silva <rmfrfs@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Rui Miguel Silva 2016-09-30 18:26:55 +01:00 committed by Greg Kroah-Hartman
parent 544a69443b
commit 5cf6267915

View file

@ -483,7 +483,7 @@ static int gb_blink_set(struct led_classdev *cdev, unsigned long *delay_on,
if (ret < 0)
goto out_pm_put;
if (delay_on)
if (*delay_on)
channel->active = true;
else
channel->active = false;