diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2015-08-20 22:44:14 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-31 07:57:26 -0600 |
commit | 776d2ef06bb627b410f4f2aa6a21ceb24a92b260 (patch) | |
tree | aabbd2c224845d31761093d91a43bb97c07a1baf | |
parent | 628d792c0775ff4b0d373494d075dd7fcb74bb76 (diff) | |
download | u-boot-776d2ef06bb627b410f4f2aa6a21ceb24a92b260.zip u-boot-776d2ef06bb627b410f4f2aa6a21ceb24a92b260.tar.gz u-boot-776d2ef06bb627b410f4f2aa6a21ceb24a92b260.tar.bz2 |
drivers: kconfig: Move "Generic Driver Options" menu to the top
Make "Generic Driver Options" menu show on the top in the Kconfig.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | drivers/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/Kconfig b/drivers/Kconfig index 092bc02..b25c59c 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -1,9 +1,9 @@ menu "Device Drivers" -source "drivers/clk/Kconfig" - source "drivers/core/Kconfig" +source "drivers/clk/Kconfig" + source "drivers/cpu/Kconfig" source "drivers/demo/Kconfig" |