summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-01-14 17:20:23 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-14 17:20:23 (GMT)
commit7f73ca484f792a0d2a7ee09860c32f3d02b3030d (patch)
tree80b13cc0005213270ddbfd42c5f69a64c7b38b5b /common
parentf9dadaef8b75fa222ca9773274cce055e7bdd9d7 (diff)
downloadu-boot-fsl-qoriq-7f73ca484f792a0d2a7ee09860c32f3d02b3030d.tar.xz
Kconfig: CONFIG_OF_PLATDATA doesn't really exist
There is no CONFIG_OF_PLATDATA, only CONFIG_SPL_OF_PLATDATA, so rename the two references to CONFIG_OF_PLATDATA to CONFIG_SPL_OF_PLATDATA. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index a76ea3a..e512ee0 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -248,7 +248,7 @@ int spl_init(void)
}
}
if (IS_ENABLED(CONFIG_SPL_DM)) {
- /* With CONFIG_OF_PLATDATA, bring in all devices */
+ /* With CONFIG_SPL_OF_PLATDATA, bring in all devices */
ret = dm_init_and_scan(!CONFIG_IS_ENABLED(OF_PLATDATA));
if (ret) {
debug("dm_init_and_scan() returned error %d\n", ret);