udev: path_id - add scm support

Add support for scm block devices. Introduced here:
http://git.kernel.org/?p=linux/kernel/git/torvalds/linux.git;a=commitdiff;h=f30664e2

Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
This commit is contained in:
Sebastian Ott 2012-10-09 15:57:54 +02:00 committed by Kay Sievers
parent cfbc22abd0
commit 4ecc131848
1 changed files with 3 additions and 0 deletions

View File

@ -484,6 +484,9 @@ static int builtin_path_id(struct udev_device *dev, int argc, char *argv[], bool
} else if (strcmp(subsys, "virtio") == 0) {
path_prepend(&path, "virtio-pci-%s", udev_device_get_sysname(parent));
parent = skip_subsystem(parent, "virtio");
} else if (strcmp(subsys, "scm") == 0) {
path_prepend(&path, "scm-%s", udev_device_get_sysname(parent));
parent = skip_subsystem(parent, "scm");
}
parent = udev_device_get_parent(parent);