diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2004-11-12 06:17:35 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 22:24:10 -0700 |
commit | c6478ec1e128f0a92c2123ed110a651b88d43569 (patch) | |
tree | cfefe6c87301604bb838f1a5eb566f1206d975d2 /udev_lib.h | |
parent | 31fd340352236c06c30a85fa9fbdbfbbd10bd439 (diff) |
[PATCH] add ACTION to udev object to expose it to the whole process
Diffstat (limited to 'udev_lib.h')
-rw-r--r-- | udev_lib.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/udev_lib.h b/udev_lib.h index 94649b645f..30d839461a 100644 --- a/udev_lib.h +++ b/udev_lib.h @@ -76,13 +76,9 @@ do { \ # define asmlinkage /* nothing */ #endif -extern char *get_action(void); -extern char *get_devpath(void); -extern char *get_devname(void); -extern char *get_seqnum(void); -extern char *get_subsystem(char *subsystem); extern char get_device_type(const char *path, const char *subsystem); -extern void udev_set_values(struct udevice *udev, const char* devpath, const char *subsystem); +extern void udev_set_values(struct udevice *udev, const char* devpath, + const char *subsystem, const char* action); extern int create_path(const char *path); extern int file_map(const char *filename, char **buf, size_t *bufsize); extern void file_unmap(char *buf, size_t bufsize); |