aboutsummaryrefslogtreecommitdiff
path: root/sysfsutils/test/get_driver.c
diff options
context:
space:
mode:
authorAlan Brault <alan.brault@incruentatus.net>2010-12-07 18:46:54 -0500
committerAlan Brault <alan.brault@incruentatus.net>2010-12-07 18:46:54 -0500
commit42f22b3aa32461423413aaee8335d420cdd484dd (patch)
treea4a500bf31bd583255a27e4ab8b82e94bdbc80a4 /sysfsutils/test/get_driver.c
parent78d2728b5b5a50cb72db8d14b46cf86284aea03b (diff)
downloadNetNuke2-42f22b3aa32461423413aaee8335d420cdd484dd.tar.gz
Remove sysfsutils directory, no longer required
Diffstat (limited to 'sysfsutils/test/get_driver.c')
-rw-r--r--sysfsutils/test/get_driver.c86
1 files changed, 0 insertions, 86 deletions
diff --git a/sysfsutils/test/get_driver.c b/sysfsutils/test/get_driver.c
deleted file mode 100644
index 51c6522..0000000
--- a/sysfsutils/test/get_driver.c
+++ /dev/null
@@ -1,86 +0,0 @@
-/*
- * get_driver.c
- *
- * Utility to get details of the given driver
- *
- * Copyright (C) IBM Corp. 2003-2005
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License as published by the
- * Free Software Foundation version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "libsysfs.h"
-
-static void print_usage(void)
-{
- fprintf(stdout, "Usage: get_driver [bus] [driver]\n");
-}
-
-int main(int argc, char *argv[])
-{
- char *bus = NULL, path[SYSFS_PATH_MAX];
- struct sysfs_driver *driver = NULL;
- struct sysfs_device *device = NULL;
- struct dlist *devlist = NULL;
- struct sysfs_attribute *attr = NULL;
-
- if (argc != 3) {
- print_usage();
- return 1;
- }
-
- memset(path, 0, SYSFS_PATH_MAX);
- if ((sysfs_get_mnt_path(path, SYSFS_PATH_MAX)) != 0) {
- fprintf(stdout, "Sysfs not mounted?\n");
- return 1;
- }
- strcat(path, "/");
- strcat(path, SYSFS_BUS_NAME);
- strcat(path, "/");
- strcat(path, argv[1]);
- strcat(path, "/");
- strcat(path, SYSFS_DRIVERS_NAME);
- strcat(path, "/");
- strcat(path, argv[2]);
- driver = sysfs_open_driver_path(path);
- if (driver == NULL) {
- fprintf(stdout, "Driver %s not found\n", argv[1]);
- free(bus);
- return 1;
- }
- devlist = sysfs_get_driver_devices(driver);
- if (devlist != NULL) {
- fprintf(stdout, "%s is used by:\n", argv[2]);
- dlist_for_each_data(devlist, device, struct sysfs_device)
- fprintf(stdout, "\t\t%s\n", device->bus_id);
- } else
- fprintf(stdout, "%s is presently not used by any device\n",
- argv[2]);
-
- fprintf(stdout, "driver %s is on bus %s\n", driver->name, driver->bus);
-
- struct sysfs_module *module = sysfs_get_driver_module(driver);
- if (module)
- fprintf(stdout, "%s is using the module %s\n",
- driver->name, module->name);
-
- sysfs_close_driver(driver);
- free(bus);
- return 0;
-}
-