All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD
@ 2020-05-26 17:07 Marcin Juszkiewicz
  2020-05-26 17:07 ` [PATCH 2/3] kconfig: fix some typos Marcin Juszkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Marcin Juszkiewicz @ 2020-05-26 17:07 UTC (permalink / raw)
  To: u-boot

All three options had the same description.

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 drivers/input/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git drivers/input/Kconfig drivers/input/Kconfig
index a3bdd9fa34..a17e55e997 100644
--- drivers/input/Kconfig
+++ drivers/input/Kconfig
@@ -21,7 +21,7 @@ config DM_KEYBOARD
 	  input and update LEDs if the keyboard has them.
 
 config SPL_DM_KEYBOARD
-	bool "Enable driver model keyboard support"
+	bool "Enable driver model keyboard support for SPL"
 	depends on SPL_DM
 	help
 	  This adds a uclass for keyboards and implements keyboard support
@@ -30,7 +30,7 @@ config SPL_DM_KEYBOARD
 	  input and update LEDs if the keyboard has them.
 
 config TPL_DM_KEYBOARD
-	bool "Enable driver model keyboard support"
+	bool "Enable driver model keyboard support for TPL"
 	depends on TPL_DM
 	help
 	  This adds a uclass for keyboards and implements keyboard support
-- 
2.26.2

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

* [PATCH 2/3] kconfig: fix some typos
  2020-05-26 17:07 [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Marcin Juszkiewicz
@ 2020-05-26 17:07 ` Marcin Juszkiewicz
  2020-06-03 16:25   ` Tom Rini
  2020-05-26 17:07 ` [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list Marcin Juszkiewicz
  2020-06-03 16:25 ` [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Tom Rini
  2 siblings, 1 reply; 6+ messages in thread
From: Marcin Juszkiewicz @ 2020-05-26 17:07 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 lib/Kconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git lib/Kconfig lib/Kconfig
index f18bf3778b..af5c38afd9 100644
--- lib/Kconfig
+++ lib/Kconfig
@@ -162,7 +162,7 @@ config LIB_RAND
 	bool "Pseudo-random library support"
 
 config LIB_HW_RAND
-	bool "HW Engine for random libray support"
+	bool "HW Engine for random library support"
 
 endchoice
 
@@ -448,7 +448,7 @@ config ZSTD
 config SPL_LZ4
 	bool "Enable LZ4 decompression support in SPL"
 	help
-	  This enables support for tge LZ4 decompression algorithm in SPL. LZ4
+	  This enables support for the LZ4 decompression algorithm in SPL. LZ4
 	  is a lossless data compression algorithm that is focused on
 	  fast compression and decompression speed. It belongs to the LZ77
 	  family of byte-oriented compression schemes.
@@ -456,7 +456,7 @@ config SPL_LZ4
 config SPL_LZMA
 	bool "Enable LZMA decompression support for SPL build"
 	help
-	  This enables support for LZMA compression altorithm for SPL boot.
+	  This enables support for LZMA compression algorithm for SPL boot.
 
 config SPL_LZO
 	bool "Enable LZO decompression support in SPL"
-- 
2.26.2

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

* [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list
  2020-05-26 17:07 [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Marcin Juszkiewicz
  2020-05-26 17:07 ` [PATCH 2/3] kconfig: fix some typos Marcin Juszkiewicz
@ 2020-05-26 17:07 ` Marcin Juszkiewicz
  2020-06-03 16:25   ` Tom Rini
  2020-06-03 16:25 ` [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Tom Rini
  2 siblings, 1 reply; 6+ messages in thread
From: Marcin Juszkiewicz @ 2020-05-26 17:07 UTC (permalink / raw)
  To: u-boot

Description said that OHCI is not supported for driver model
while it was converted too.

Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>
---
 drivers/usb/Kconfig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git drivers/usb/Kconfig drivers/usb/Kconfig
index 928a89133c..756a4ec402 100644
--- drivers/usb/Kconfig
+++ drivers/usb/Kconfig
@@ -39,8 +39,8 @@ config DM_USB
 	help
 	  Enable driver model for USB. The USB interface is then implemented
 	  by the USB uclass. Multiple USB controllers of different types
-	  (XHCI, EHCI) can be attached and used. The 'usb' command works as
-	  normal. OCHI is not supported at present.
+	  (XHCI, EHCI, OHCI) can be attached and used. The 'usb' command works
+	  as normal.
 
 	  Much of the code is shared but with this option enabled the USB
 	  uclass takes care of device enumeration. USB devices can be
-- 
2.26.2

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

* [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD
  2020-05-26 17:07 [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Marcin Juszkiewicz
  2020-05-26 17:07 ` [PATCH 2/3] kconfig: fix some typos Marcin Juszkiewicz
  2020-05-26 17:07 ` [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list Marcin Juszkiewicz
@ 2020-06-03 16:25 ` Tom Rini
  2 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2020-06-03 16:25 UTC (permalink / raw)
  To: u-boot

On Tue, May 26, 2020 at 07:07:14PM +0200, Marcin Juszkiewicz wrote:

> All three options had the same description.
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200603/7d1e05c7/attachment.sig>

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

* [PATCH 2/3] kconfig: fix some typos
  2020-05-26 17:07 ` [PATCH 2/3] kconfig: fix some typos Marcin Juszkiewicz
@ 2020-06-03 16:25   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2020-06-03 16:25 UTC (permalink / raw)
  To: u-boot

On Tue, May 26, 2020 at 07:07:15PM +0200, Marcin Juszkiewicz wrote:

> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200603/f35e036c/attachment.sig>

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

* [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list
  2020-05-26 17:07 ` [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list Marcin Juszkiewicz
@ 2020-06-03 16:25   ` Tom Rini
  0 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2020-06-03 16:25 UTC (permalink / raw)
  To: u-boot

On Tue, May 26, 2020 at 07:07:16PM +0200, Marcin Juszkiewicz wrote:

> Description said that OHCI is not supported for driver model
> while it was converted too.
> 
> Signed-off-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200603/9bd9c21d/attachment.sig>

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

end of thread, other threads:[~2020-06-03 16:25 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-26 17:07 [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Marcin Juszkiewicz
2020-05-26 17:07 ` [PATCH 2/3] kconfig: fix some typos Marcin Juszkiewicz
2020-06-03 16:25   ` Tom Rini
2020-05-26 17:07 ` [PATCH 3/3] kconfig: fix typo for OHCI host and add to DM list Marcin Juszkiewicz
2020-06-03 16:25   ` Tom Rini
2020-06-03 16:25 ` [PATCH 1/3] kconfig: mark SPL/TPL options for DM_KEYBOARD Tom Rini

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.