diff options
author | kay.sievers@vrfy.org <kay.sievers@vrfy.org> | 2005-03-05 05:35:31 +0100 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 23:48:48 -0700 |
commit | e48fc108d9731f6f091742fe6588c495d1948fac (patch) | |
tree | 61ae26907421a39be1205de59b9594f0134e3d04 /udev_db.h | |
parent | 7eb92135c61af77fff62eec5f396b9633a54b245 (diff) |
[PATCH] allow unlimitied count of symlinks
Diffstat (limited to 'udev_db.h')
-rw-r--r-- | udev_db.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,8 +28,8 @@ extern int udev_db_add_device(struct udevice *dev); extern int udev_db_delete_device(struct udevice *dev); -extern int udev_db_get_device_by_devpath(struct udevice *udev, const char *devpath); -extern int udev_db_get_device_by_name(struct udevice *udev, const char *name); +extern int udev_db_get_device(struct udevice *udev, const char *devpath); +extern int udev_db_search_name(char *devpath, size_t len, const char *name); extern int udev_db_call_foreach(int (*handler_function)(struct udevice *udev)); #endif /* _UDEV_DB_H_ */ |