eeze/sensor: Just use one list for available modules and add udev.
authorStefan Schmidt <s.schmidt@samsung.com>
Thu, 18 Apr 2013 14:49:18 +0000 (15:49 +0100)
committerStefan Schmidt <s.schmidt@samsung.com>
Thu, 18 Apr 2013 14:50:40 +0000 (15:50 +0100)
The second list got introduced when eeze got merged into efl. Instead
of maintaining both lists we can just go with one.

src/lib/eeze/eeze_sensor.c

index 43da8be..4086142 100644 (file)
@@ -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",