summaryrefslogtreecommitdiff
path: root/devices
diff options
context:
space:
mode:
authorjy910.yun <jy910.yun@samsung.com>2014-11-07 21:40:20 +0900
committerjy910.yun <jy910.yun@samsung.com>2014-11-07 21:40:20 +0900
commit032b4a930fed8679f32f7300b5fe747c5ca4e6b0 (patch)
tree825b14caad25f4ae765e14d0b0ade262e404a0d8 /devices
parent91a0e7fb142585031152df4117675404e804eb00 (diff)
downloadlibdevice-node-032b4a930fed8679f32f7300b5fe747c5ca4e6b0.tar.gz
libdevice-node-032b4a930fed8679f32f7300b5fe747c5ca4e6b0.tar.bz2
libdevice-node-032b4a930fed8679f32f7300b5fe747c5ca4e6b0.zip
device-node: Add get_max_brightness and set_irled functionssubmit/tizen/20141112.104554
Support to get the max brightness value of display Support to set command to irled Change-Id: I789e608a56371acc973fff2038eb4efa8ff5cbd1 Signed-off-by: jy910.yun <jy910.yun@samsung.com>
Diffstat (limited to 'devices')
-rw-r--r--devices/display.c2
-rw-r--r--devices/led.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/devices/display.c b/devices/display.c
index 2900699..cba2217 100644
--- a/devices/display.c
+++ b/devices/display.c
@@ -51,6 +51,8 @@ static int display_get_prop(int __prop, int *val)
case PROP_DISPLAY_DISPLAY_COUNT:
*val = disp_cnt;
return 0;
+ case PROP_DISPLAY_MAX_BRIGHTNESS:
+ return PLUGIN_GET(backlight_max_brightness)(index, val);
case PROP_DISPLAY_BRIGHTNESS:
/* check power saving */
vconf_get_bool(VCONFKEY_SETAPPL_PWRSV_SYSMODE_STATUS, &ps_stat);
diff --git a/devices/led.c b/devices/led.c
index 2ee89db..57db061 100644
--- a/devices/led.c
+++ b/devices/led.c
@@ -38,6 +38,8 @@ static int led_set_prop(int prop, int val)
switch (prop) {
case PROP_LED_BRIGHTNESS:
return PLUGIN_SET(leds_torch_brightness)(val);
+ case PROP_LED_IR_COMMAND:
+ return PLUGIN_SET(irled_control)((char*)val);
case PROP_LED_HARDKEY:
return PLUGIN_SET(hardkey_backlight)(val);
}