Checking feature http://tizen.org/feature/display.state had been
added without ACR and it broke ABI compatibility.
- callback: check feature before add/remove callback (f860d7)
To recover ABI compatability, do not check the feature.
Change-Id: I3721268455ac62b52054f873808c224a8efdf832
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
retval = system_info_get_platform_bool("http://tizen.org/feature/display", &supported);
if (retval != SYSTEM_INFO_ERROR_NONE || !supported)
return -ENOTSUP;
- retval = system_info_get_platform_bool("http://tizen.org/feature/display.state", &supported);
- if (retval != SYSTEM_INFO_ERROR_NONE || !supported)
- return -ENOTSUP;
f_display = true;
return 0;