summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaeyoung Kim <ty317.kim@samsung.com>2016-04-28 02:19:48 -0700
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>2016-04-28 02:19:48 -0700
commit4d983bacc93342c4ee49e764ac04ae2bd3f4ef6a (patch)
tree9a079cfb9c6bf6d8ed64110a7fcd740a27dee341
parentb46e6778279cd2ffcbf99326980527ce1845b666 (diff)
parent0a9a41c953ceb8d5e7711952b5eb18bf393b568d (diff)
downloaddeviced-4d983bacc93342c4ee49e764ac04ae2bd3f4ef6a.tar.gz
deviced-4d983bacc93342c4ee49e764ac04ae2bd3f4ef6a.tar.bz2
deviced-4d983bacc93342c4ee49e764ac04ae2bd3f4ef6a.zip
Merge "display: change the order of display options" into tizen
-rw-r--r--src/display/core.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/display/core.c b/src/display/core.c
index eecdf16d..70c6456e 100644
--- a/src/display/core.c
+++ b/src/display/core.c
@@ -1821,15 +1821,15 @@ static void init_lcd_operation(void)
{
const struct device_ops *ops = NULL;
- ops = find_device("display");
+ ops = find_device("touchscreen");
if (!check_default(ops))
DD_LIST_APPEND(lcdon_ops, ops);
- ops = find_device("touchscreen");
+ ops = find_device("touchkey");
if (!check_default(ops))
DD_LIST_APPEND(lcdon_ops, ops);
- ops = find_device("touchkey");
+ ops = find_device("display");
if (!check_default(ops))
DD_LIST_APPEND(lcdon_ops, ops);
}