mirror of
https://github.com/AuxXxilium/eudev.git
synced 2025-01-22 15:10:20 +07:00
do not skip RUN execution if device node removal fails
This commit is contained in:
parent
98520be72f
commit
a0092d28db
@ -408,8 +408,8 @@ int udev_node_remove(struct udevice *udev)
|
||||
strlcat(filename, "/", sizeof(filename));
|
||||
strlcat(filename, udev->name, sizeof(filename));
|
||||
if (stat(filename, &stats) != 0) {
|
||||
dbg("device node '%s' not found", filename);
|
||||
return -1;
|
||||
info("device node '%s' not found", filename);
|
||||
return 0;
|
||||
}
|
||||
if (udev->devt && stats.st_rdev != udev->devt) {
|
||||
info("device node '%s' points to a different device, skip removal", filename);
|
||||
|
Loading…
Reference in New Issue
Block a user