diff options
author | Chris Clayton <chris2553@googlemail.com> | 2015-06-18 13:22:13 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2015-06-18 13:22:13 -0400 |
commit | 52a4d0c0d509e89571fdd7233b9b259c5fcafe52 (patch) | |
tree | a41f12732862698372368f86ca5314a33c67b0b0 /src/libudev/libudev.h | |
parent | 7061de26fa038719b70f6fdf971acf8ff807fd2f (diff) |
udevd: fix REMOVE handling
The original upstream commit is at
http://cgit.freedesktop.org/systemd/systemd/commit/?id=107f2e2526d476c6cc9b81a690391c111027d641
This was reworked by Chris Clayton for eudev.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src/libudev/libudev.h')
-rw-r--r-- | src/libudev/libudev.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libudev/libudev.h b/src/libudev/libudev.h index a94505c09e..8a2441a825 100644 --- a/src/libudev/libudev.h +++ b/src/libudev/libudev.h @@ -88,6 +88,7 @@ struct udev_device *udev_device_get_parent(struct udev_device *udev_device); struct udev_device *udev_device_get_parent_with_subsystem_devtype(struct udev_device *udev_device, const char *subsystem, const char *devtype); /* retrieve device properties */ +int udev_device_read_db(struct udev_device *udev_device); const char *udev_device_get_devpath(struct udev_device *udev_device); const char *udev_device_get_subsystem(struct udev_device *udev_device); const char *udev_device_get_devtype(struct udev_device *udev_device); |