summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2013-04-18 15:49:18 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2013-04-18 15:50:40 +0100
commitf4ecb5ebcc058df28147434a0dc4e275fec25eb2 (patch)
tree86f2809f16b24c66ebe856def8c41bd4d318d15b
parent1316de8fd3afbe067ffdfc31900c76640b252e12 (diff)
downloadefl-f4ecb5ebcc058df28147434a0dc4e275fec25eb2.tar.gz
eeze/sensor: Just use one list for available modules and add udev.
The second list got introduced when eeze got merged into efl. Instead of maintaining both lists we can just go with one.
-rw-r--r--src/lib/eeze/eeze_sensor.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/eeze/eeze_sensor.c b/src/lib/eeze/eeze_sensor.c
index 43da8be23f..40861427be 100644
--- a/src/lib/eeze/eeze_sensor.c
+++ b/src/lib/eeze/eeze_sensor.c
@@ -13,13 +13,14 @@ static Eeze_Sensor *g_handle;
static Eina_Prefix *pfx;
/* Priority order for modules. The one with the highest order of the available
- * ones will be used. This in good enough for now as we only have two modules
+ * ones will be used. This in good enough for now as we only have three modules
* and one is a test harness anyway. If the number of modules grows we might
* re-think the priority handling, but we should do this when the need arise.
*/
static const char *_module_priority[] = {
"tizen",
"fake",
+ "udev",
NULL
};
@@ -82,10 +83,9 @@ eeze_sensor_modules_load(void)
*/
if (getenv("EFL_RUN_IN_TREE"))
{
- const char *modules[] = { "tizen", "fake", NULL };
const char **itr;
- for (itr = modules; *itr != NULL; itr++)
+ for (itr = _module_priority; *itr != NULL; itr++)
{
snprintf(buf, sizeof(buf),
PACKAGE_BUILD_DIR "/src/modules/eeze/sensor/%s/.libs",