diff options
author | Simon Glass | 2020-11-28 17:50:09 -0700 |
---|---|---|
committer | Simon Glass | 2020-12-13 07:58:18 -0700 |
commit | 725e4fce61e5b8339fdc975b01ce7bb3dd9fa5f4 (patch) | |
tree | e1f7b772007575a08423e467a124a0c1c6886c45 /include/dm | |
parent | 2ebea5eaebf2c11c3f18f553d1bceba22e220893 (diff) |
dm: core: Drop unused parameter from dm_scan_fdt()
This doesn't need to be passed the devicetree anymore. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/root.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/dm/root.h b/include/dm/root.h index c8d629ba9bf..e277ebb9523 100644 --- a/include/dm/root.h +++ b/include/dm/root.h @@ -47,12 +47,11 @@ int dm_scan_platdata(bool pre_reloc_only); * This scans the device tree and creates a driver for each node. Only * the top-level subnodes are examined. * - * @blob: Pointer to device tree blob * @pre_reloc_only: If true, bind only nodes with special devicetree properties, * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. * @return 0 if OK, -ve on error */ -int dm_scan_fdt(const void *blob, bool pre_reloc_only); +int dm_scan_fdt(bool pre_reloc_only); /** * dm_extended_scan_fdt() - Scan the device tree and bind drivers |