diff mbox

[U-Boot,1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top

Message ID 1440135856-16872-1-git-send-email-bmeng.cn@gmail.com
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Bin Meng Aug. 21, 2015, 5:44 a.m. UTC
Make "Generic Driver Options" menu show on the top in the Kconfig.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 drivers/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Simon Glass Aug. 21, 2015, 11:27 p.m. UTC | #1
On 20 August 2015 at 23:44, Bin Meng <bmeng.cn@gmail.com> wrote:
> Make "Generic Driver Options" menu show on the top in the Kconfig.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  drivers/Kconfig | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Acked-by: Simon Glass <sjg@chromium.org>
Simon Glass Aug. 26, 2015, 4:05 a.m. UTC | #2
On 21 August 2015 at 16:27, Simon Glass <sjg@chromium.org> wrote:
> On 20 August 2015 at 23:44, Bin Meng <bmeng.cn@gmail.com> wrote:
>> Make "Generic Driver Options" menu show on the top in the Kconfig.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  drivers/Kconfig | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!
diff mbox

Patch

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"