libudev: private - make property_from_string_parse* static

Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
Tom Gundersen 2015-03-18 20:25:14 -04:00 committed by Anthony G. Basile
parent bf79b2d789
commit a79d38412a
2 changed files with 2 additions and 4 deletions

View File

@ -454,7 +454,7 @@ static int udev_device_set_syspath(struct udev_device *udev_device, const char *
* udev_device_set_info_loaded() needs to be set, to avoid trying
* to use a device without a DEVPATH set
*/
void udev_device_add_property_from_string_parse(struct udev_device *udev_device, const char *property)
static void udev_device_add_property_from_string_parse(struct udev_device *udev_device, const char *property)
{
if (startswith(property, "DEVPATH=")) {
char path[UTIL_PATH_SIZE];
@ -530,7 +530,7 @@ void udev_device_add_property_from_string_parse(struct udev_device *udev_device,
}
}
int udev_device_add_property_from_string_parse_finish(struct udev_device *udev_device)
static int udev_device_add_property_from_string_parse_finish(struct udev_device *udev_device)
{
if (udev_device->maj > 0)
udev_device_set_devnum(udev_device, makedev(udev_device->maj, udev_device->min));

View File

@ -46,8 +46,6 @@ int udev_device_rename(struct udev_device *udev_device, const char *new_name);
int udev_device_add_devlink(struct udev_device *udev_device, const char *devlink);
void udev_device_cleanup_devlinks_list(struct udev_device *udev_device);
int udev_device_add_property(struct udev_device *udev_device, const char *key, const char *value);
void udev_device_add_property_from_string_parse(struct udev_device *udev_device, const char *property);
int udev_device_add_property_from_string_parse_finish(struct udev_device *udev_device);
char **udev_device_get_properties_envp(struct udev_device *udev_device);
ssize_t udev_device_get_properties_monitor_buf(struct udev_device *udev_device, const char **buf);
int udev_device_read_db(struct udev_device *udev_device);