Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'driver-core-4.18-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core

Pull driver core fix from Greg KH:
"This is a single driver core fix for 4.18-rc7. It partially reverts a
previous commit to resolve some reported issues.

It has been in linux-next for a while now with no reported issues"

* tag 'driver-core-4.18-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
driver core: Partially revert "driver core: correct device's shutdown order"

-8
-8
drivers/base/dd.c
··· 434 434 goto probe_failed; 435 435 } 436 436 437 - /* 438 - * Ensure devices are listed in devices_kset in correct order 439 - * It's important to move Dev to the end of devices_kset before 440 - * calling .probe, because it could be recursive and parent Dev 441 - * should always go first 442 - */ 443 - devices_kset_move_last(dev); 444 - 445 437 if (dev->bus->probe) { 446 438 ret = dev->bus->probe(dev); 447 439 if (ret)