udevtrigger: simplify scan_subsystem function
authorGabor Juhos <juhosg@openwrt.org>
Wed, 11 Sep 2013 14:10:15 +0000 (16:10 +0200)
committerJohn Crispin <blogic@openwrt.org>
Fri, 13 Sep 2013 15:36:58 +0000 (17:36 +0200)
Remove the local directory scanning code and
use the scan_subdir function instead.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
udevtrigger.c

index 5a9acac..08ddb06 100644 (file)
@@ -220,32 +220,11 @@ static void scan_subdir(const char *base, const char *subdir,
 static void scan_subsystem(const char *subsys)
 {
        char base[PATH_SIZE];
-       DIR *dir;
-       struct dirent *dent;
 
        strlcpy(base, "/sys/", sizeof(base));
        strlcat(base, subsys, sizeof(base));
 
-       dir = opendir(base);
-       if (dir == NULL)
-               return;
-
-       for (dent = readdir(dir); dent != NULL; dent = readdir(dir)) {
-               char dirname[PATH_SIZE];
-
-               if (dent->d_name[0] == '.')
-                       continue;
-
-               strlcpy(dirname, base, sizeof(dirname));
-               strlcat(dirname, "/", sizeof(dirname));
-               strlcat(dirname, dent->d_name, sizeof(dirname));
-               strlcat(dirname, "/devices", sizeof(dirname));
-
-               /* look for devices */
-               scan_subdir(dirname, NULL, true, 0);
-       }
-
-       closedir(dir);
+       scan_subdir(base, "/devices", false, 1);
 }
 
 static void scan_block(void)