diff options
author | Matthias Kaehlcke <matthias@kaehlcke.net> | 2012-08-02 22:17:48 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-08-16 12:32:34 -0700 |
commit | f3d9d365ff7f36c4e3491ef31788449f419b781b (patch) | |
tree | 4c50311e2b3121b65a35b30f065c7b542baeede7 | |
parent | a2f6985332d2564e443d9d889ce70f39b3293d09 (diff) | |
download | linux-stable-f3d9d365ff7f36c4e3491ef31788449f419b781b.tar.gz linux-stable-f3d9d365ff7f36c4e3491ef31788449f419b781b.tar.bz2 linux-stable-f3d9d365ff7f36c4e3491ef31788449f419b781b.zip |
ti-st: Fix check for pdata->chip_awake function pointer
ll_device_want_to_wakeup(): Fix the NULL pointer check on pdata->chip_awake,
which is performed on the wrong function pointer
Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/ti-st/st_ll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/ti-st/st_ll.c b/drivers/misc/ti-st/st_ll.c index 1ff460a8e9c7..93b4d67cc4a3 100644 --- a/drivers/misc/ti-st/st_ll.c +++ b/drivers/misc/ti-st/st_ll.c @@ -87,7 +87,7 @@ static void ll_device_want_to_wakeup(struct st_data_s *st_data) /* communicate to platform about chip wakeup */ kim_data = st_data->kim_data; pdata = kim_data->kim_pdev->dev.platform_data; - if (pdata->chip_asleep) + if (pdata->chip_awake) pdata->chip_awake(NULL); } |