1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-22 06:50:18 +03:00

builtin: path_id - remove dead cciss code

This commit is contained in:
Kay Sievers 2012-02-23 16:22:05 +01:00
parent 5f2fa5b1c3
commit e000d7c079
2 changed files with 2 additions and 7 deletions

2
TODO
View File

@ -1,3 +1,5 @@
- make "-/usr/bin/foo" non-fail
- find a way to tell udev to not cancel firmware
requests in initramfs

View File

@ -360,11 +360,6 @@ static struct udev_device *handle_usb(struct udev_device *parent, char **path)
return parent;
}
static struct udev_device *handle_cciss(struct udev_device *parent, char **path)
{
return NULL;
}
static struct udev_device *handle_ccw(struct udev_device *parent, struct udev_device *dev, char **path)
{
struct udev_device *scsi_dev;
@ -414,8 +409,6 @@ static int builtin_path_id(struct udev_device *dev, int argc, char *argv[], bool
handle_scsi_tape(parent, &path);
} else if (strcmp(subsys, "scsi") == 0) {
parent = handle_scsi(parent, &path);
} else if (strcmp(subsys, "cciss") == 0) {
handle_cciss(parent, &path);
} else if (strcmp(subsys, "usb") == 0) {
parent = handle_usb(parent, &path);
} else if (strcmp(subsys, "serio") == 0) {