commit | 02c07b3741f1b825934b1a6eb8f23530532dc426 | [log] [tgz] |
---|---|---|
author | Simon Glass <sjg@chromium.org> | Thu Mar 05 12:25:22 2015 -0700 |
committer | Simon Glass <sjg@chromium.org> | Thu Apr 16 19:27:42 2015 -0600 |
tree | db9511b8172e15dc4f0ad4a44a0cc05474851cc0 | |
parent | 02eeb1bbb1749903b157140de5dedebf7e44edcf [diff] |
dm: core: Add a uclass pre_probe() method for devices Some uclasses want to set up a device before it is probed. Add a method for this. An example is with PCI, where a PCI uclass wants to set up its private data for later use. This allows the device's uclass() method to make calls whcih use that data (for example, read PCI memory regions from device tree, set up bus numbers). Signed-off-by: Simon Glass <sjg@chromium.org>