All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top
@ 2015-08-21  5:44 Bin Meng
  2015-08-21  5:44 ` [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu Bin Meng
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Bin Meng @ 2015-08-21  5:44 UTC (permalink / raw)
  To: u-boot

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(-)

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"
-- 
1.8.2.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu
  2015-08-21  5:44 [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Bin Meng
@ 2015-08-21  5:44 ` Bin Meng
  2015-08-21 23:27   ` Simon Glass
  2015-08-21  5:44 ` [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order Bin Meng
  2015-08-21 23:27 ` [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Simon Glass
  2 siblings, 1 reply; 9+ messages in thread
From: Bin Meng @ 2015-08-21  5:44 UTC (permalink / raw)
  To: u-boot

Right now PHYS_TO_BUS shows in the Kconfig main menu, move it.

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

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

diff --git a/drivers/Kconfig b/drivers/Kconfig
index b25c59c..9d0df9b 100644
--- a/drivers/Kconfig
+++ b/drivers/Kconfig
@@ -60,8 +60,6 @@ source "drivers/crypto/Kconfig"
 
 source "drivers/thermal/Kconfig"
 
-endmenu
-
 config PHYS_TO_BUS
 	bool "Custom physical to bus address mapping"
 	help
@@ -69,3 +67,5 @@ config PHYS_TO_BUS
 	  peripheral DMA master accesses. If yours does, select this option in
 	  your platform's Kconfig, and implement the appropriate mapping
 	  functions in your platform's support code.
+
+endmenu
-- 
1.8.2.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order
  2015-08-21  5:44 [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Bin Meng
  2015-08-21  5:44 ` [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu Bin Meng
@ 2015-08-21  5:44 ` Bin Meng
  2015-08-21 23:27   ` Simon Glass
  2015-08-21 23:27 ` [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Simon Glass
  2 siblings, 1 reply; 9+ messages in thread
From: Bin Meng @ 2015-08-21  5:44 UTC (permalink / raw)
  To: u-boot

Sort different types of drivers in alphabetical order.

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

 drivers/Kconfig | 50 ++++++++++++++++++++++++++------------------------
 1 file changed, 26 insertions(+), 24 deletions(-)

diff --git a/drivers/Kconfig b/drivers/Kconfig
index 9d0df9b..524d73e 100644
--- a/drivers/Kconfig
+++ b/drivers/Kconfig
@@ -2,63 +2,65 @@ menu "Device Drivers"
 
 source "drivers/core/Kconfig"
 
+# types of drivers sorted in alphabetical order
+
+source "drivers/block/Kconfig"
+
 source "drivers/clk/Kconfig"
 
 source "drivers/cpu/Kconfig"
 
-source "drivers/demo/Kconfig"
+source "drivers/crypto/Kconfig"
 
-source "drivers/pci/Kconfig"
+source "drivers/demo/Kconfig"
 
-source "drivers/pcmcia/Kconfig"
+source "drivers/dfu/Kconfig"
 
-source "drivers/mtd/Kconfig"
+source "drivers/dma/Kconfig"
 
-source "drivers/block/Kconfig"
+source "drivers/gpio/Kconfig"
 
-source "drivers/misc/Kconfig"
+source "drivers/hwmon/Kconfig"
 
-source "drivers/net/Kconfig"
+source "drivers/i2c/Kconfig"
 
 source "drivers/input/Kconfig"
 
 source "drivers/led/Kconfig"
 
-source "drivers/serial/Kconfig"
+source "drivers/misc/Kconfig"
 
-source "drivers/tpm/Kconfig"
+source "drivers/mmc/Kconfig"
 
-source "drivers/i2c/Kconfig"
+source "drivers/mtd/Kconfig"
 
-source "drivers/spi/Kconfig"
+source "drivers/net/Kconfig"
 
-source "drivers/gpio/Kconfig"
+source "drivers/pci/Kconfig"
+
+source "drivers/pcmcia/Kconfig"
 
 source "drivers/power/Kconfig"
 
 source "drivers/ram/Kconfig"
 
-source "drivers/hwmon/Kconfig"
-
-source "drivers/watchdog/Kconfig"
+source "drivers/rtc/Kconfig"
 
-source "drivers/video/Kconfig"
+source "drivers/serial/Kconfig"
 
 source "drivers/sound/Kconfig"
 
-source "drivers/usb/Kconfig"
-
-source "drivers/dfu/Kconfig"
+source "drivers/spi/Kconfig"
 
-source "drivers/mmc/Kconfig"
+source "drivers/thermal/Kconfig"
 
-source "drivers/rtc/Kconfig"
+source "drivers/tpm/Kconfig"
 
-source "drivers/dma/Kconfig"
+source "drivers/usb/Kconfig"
 
-source "drivers/crypto/Kconfig"
+source "drivers/video/Kconfig"
 
-source "drivers/thermal/Kconfig"
+source "drivers/watchdog/Kconfig"
 
 config PHYS_TO_BUS
 	bool "Custom physical to bus address mapping"
-- 
1.8.2.1

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top
  2015-08-21  5:44 [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Bin Meng
  2015-08-21  5:44 ` [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu Bin Meng
  2015-08-21  5:44 ` [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order Bin Meng
@ 2015-08-21 23:27 ` Simon Glass
  2015-08-26  4:05   ` Simon Glass
  2 siblings, 1 reply; 9+ messages in thread
From: Simon Glass @ 2015-08-21 23:27 UTC (permalink / raw)
  To: u-boot

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>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu
  2015-08-21  5:44 ` [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu Bin Meng
@ 2015-08-21 23:27   ` Simon Glass
  2015-08-26  4:05     ` Simon Glass
  0 siblings, 1 reply; 9+ messages in thread
From: Simon Glass @ 2015-08-21 23:27 UTC (permalink / raw)
  To: u-boot

On 20 August 2015 at 23:44, Bin Meng <bmeng.cn@gmail.com> wrote:
> Right now PHYS_TO_BUS shows in the Kconfig main menu, move it.
>
> 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>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order
  2015-08-21  5:44 ` [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order Bin Meng
@ 2015-08-21 23:27   ` Simon Glass
  2015-08-26  4:05     ` Simon Glass
  0 siblings, 1 reply; 9+ messages in thread
From: Simon Glass @ 2015-08-21 23:27 UTC (permalink / raw)
  To: u-boot

On 20 August 2015 at 23:44, Bin Meng <bmeng.cn@gmail.com> wrote:
> Sort different types of drivers in alphabetical order.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  drivers/Kconfig | 50 ++++++++++++++++++++++++++------------------------
>  1 file changed, 26 insertions(+), 24 deletions(-)

Acked-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order
  2015-08-21 23:27   ` Simon Glass
@ 2015-08-26  4:05     ` Simon Glass
  0 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-08-26  4:05 UTC (permalink / raw)
  To: u-boot

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:
>> Sort different types of drivers in alphabetical order.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  drivers/Kconfig | 50 ++++++++++++++++++++++++++------------------------
>>  1 file changed, 26 insertions(+), 24 deletions(-)
>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu
  2015-08-21 23:27   ` Simon Glass
@ 2015-08-26  4:05     ` Simon Glass
  0 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-08-26  4:05 UTC (permalink / raw)
  To: u-boot

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:
>> Right now PHYS_TO_BUS shows in the Kconfig main menu, move it.
>>
>> 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!

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top
  2015-08-21 23:27 ` [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Simon Glass
@ 2015-08-26  4:05   ` Simon Glass
  0 siblings, 0 replies; 9+ messages in thread
From: Simon Glass @ 2015-08-26  4:05 UTC (permalink / raw)
  To: u-boot

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!

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2015-08-26  4:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-21  5:44 [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Bin Meng
2015-08-21  5:44 ` [U-Boot] [PATCH 2/3] drivers: kconfig: Move PHYS_TO_BUS to "Device Drivers" menu Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-26  4:05     ` Simon Glass
2015-08-21  5:44 ` [U-Boot] [PATCH 3/3] drivers: kconfig: Sort driver menu in alphabetical order Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-26  4:05     ` Simon Glass
2015-08-21 23:27 ` [U-Boot] [PATCH 1/3] drivers: kconfig: Move "Generic Driver Options" menu to the top Simon Glass
2015-08-26  4:05   ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.