From: kay.sievers@vrfy.org Date: Mon, 29 Nov 2004 12:51:20 +0000 (+0100) Subject: [PATCH] remove unused timestamp field X-Git-Tag: 047~19 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=3fd7a9bfc068a5598a97de5e4b4fff167917f362;ds=sidebyside [PATCH] remove unused timestamp field --- diff --git a/namedev.c b/namedev.c index 0bc28bd02..7045637e7 100644 --- a/namedev.c +++ b/namedev.c @@ -31,7 +31,6 @@ #include #include #include -#include #include "libsysfs/sysfs/libsysfs.h" #include "list.h" @@ -697,7 +696,6 @@ int namedev_name_device(struct udevice *udev, struct sysfs_class_device *class_d struct sysfs_device *sysfs_device = NULL; struct config_device *dev; struct perm_device *perm; - struct sysinfo info; char *pos; udev->mode = 0; @@ -774,7 +772,7 @@ int namedev_name_device(struct udevice *udev, struct sysfs_class_device *class_d udev->ignore_remove = dev->ignore_remove; if (udev->type == 'n') - goto done; + goto exit; udev->partitions = dev->partitions; udev->mode = dev->mode; @@ -790,7 +788,7 @@ int namedev_name_device(struct udevice *udev, struct sysfs_class_device *class_d strfieldcpy(udev->name, udev->kernel_name); if (udev->type == 'n') - goto done; + goto exit; perms: /* apply permissions from permissions file to empty fields */ @@ -815,11 +813,7 @@ perms: dbg("name, '%s' is going to have owner='%s', group='%s', mode = %#o", udev->name, udev->owner, udev->group, udev->mode); -done: - /* store time of action */ - sysinfo(&info); - udev->config_uptime = info.uptime; - +exit: return 0; } diff --git a/udev.h b/udev.h index cff991e57..7038376b3 100644 --- a/udev.h +++ b/udev.h @@ -63,7 +63,6 @@ struct udevice { int ignore_remove; int config_line; char config_file[NAME_SIZE]; - long config_uptime; char bus_id[SYSFS_NAME_LEN]; char program_result[NAME_SIZE]; char kernel_number[NAME_SIZE];