mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/2] ohci: fixes
@ 2013-01-22 14:45 Jean-Christophe PLAGNIOL-VILLARD
  2013-01-22 14:47 ` [PATCH 1/2] ohci: make it depends on !MMU Jean-Christophe PLAGNIOL-VILLARD
  2013-01-23 19:28 ` [PATCH 0/2] ohci: fixes Sascha Hauer
  0 siblings, 2 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-22 14:45 UTC (permalink / raw)
  To: barebox

Hi,

	the current divers is bugged on the mmu support so until it's fixed do
	not allow it wih mmu

	make ohci driver depends on OHCI enabled

The following changes since commit 3de3b677ee3adc4e10235b623a8e0aa45be48893:

  Makefile: move cmd_check_file_size to Makefile.lib (2013-01-20 12:51:28 +0100)

are available in the git repository at:

  git://git.jcrosoft.org/barebox.git delivery/ohci_fixes

for you to fetch changes up to 2e5068d9b3bd9457fde68665b42dc2251f12f925:

  ohci: only enable drivers if ohci is enabled (2013-01-18 17:24:45 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (2):
      ohci: make it depends on !MMU
      ohci: only enable drivers if ohci is enabled

 drivers/usb/host/Kconfig |    5 +++++
 1 file changed, 5 insertions(+)

Best Regards,
J.

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 1/2] ohci: make it depends on !MMU
  2013-01-22 14:45 [PATCH 0/2] ohci: fixes Jean-Christophe PLAGNIOL-VILLARD
@ 2013-01-22 14:47 ` Jean-Christophe PLAGNIOL-VILLARD
  2013-01-22 14:47   ` [PATCH 2/2] ohci: only enable drivers if ohci is enabled Jean-Christophe PLAGNIOL-VILLARD
  2013-01-23 19:28 ` [PATCH 0/2] ohci: fixes Sascha Hauer
  1 sibling, 1 reply; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-22 14:47 UTC (permalink / raw)
  To: barebox

the current mmu support is broken

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 drivers/usb/host/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 439d8eb..55a1446 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -8,6 +8,7 @@ config USB_EHCI_OMAP
 
 config USB_OHCI
 	bool "OHCI driver"
+	depends on !MMU
 
 config USB_OHCI_AT91
 	depends on ARCH_AT91
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* [PATCH 2/2] ohci: only enable drivers if ohci is enabled
  2013-01-22 14:47 ` [PATCH 1/2] ohci: make it depends on !MMU Jean-Christophe PLAGNIOL-VILLARD
@ 2013-01-22 14:47   ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 4+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-01-22 14:47 UTC (permalink / raw)
  To: barebox

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 drivers/usb/host/Kconfig |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/usb/host/Kconfig b/drivers/usb/host/Kconfig
index 55a1446..4c03a2d 100644
--- a/drivers/usb/host/Kconfig
+++ b/drivers/usb/host/Kconfig
@@ -10,6 +10,10 @@ config USB_OHCI
 	bool "OHCI driver"
 	depends on !MMU
 
+if USB_OHCI
+
 config USB_OHCI_AT91
 	depends on ARCH_AT91
 	bool "AT91 OHCI driver"
+
+endif
-- 
1.7.10.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

* Re: [PATCH 0/2] ohci: fixes
  2013-01-22 14:45 [PATCH 0/2] ohci: fixes Jean-Christophe PLAGNIOL-VILLARD
  2013-01-22 14:47 ` [PATCH 1/2] ohci: make it depends on !MMU Jean-Christophe PLAGNIOL-VILLARD
@ 2013-01-23 19:28 ` Sascha Hauer
  1 sibling, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2013-01-23 19:28 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Tue, Jan 22, 2013 at 03:45:40PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Hi,
> 
> 	the current divers is bugged on the mmu support so until it's fixed do
> 	not allow it wih mmu
> 
> 	make ohci driver depends on OHCI enabled
> 
> The following changes since commit 3de3b677ee3adc4e10235b623a8e0aa45be48893:
> 
>   Makefile: move cmd_check_file_size to Makefile.lib (2013-01-20 12:51:28 +0100)
> 
> are available in the git repository at:
> 
>   git://git.jcrosoft.org/barebox.git delivery/ohci_fixes

Applied, thanks

Sascha

> 
> for you to fetch changes up to 2e5068d9b3bd9457fde68665b42dc2251f12f925:
> 
>   ohci: only enable drivers if ohci is enabled (2013-01-18 17:24:45 +0800)
> 
> ----------------------------------------------------------------
> Jean-Christophe PLAGNIOL-VILLARD (2):
>       ohci: make it depends on !MMU
>       ohci: only enable drivers if ohci is enabled
> 
>  drivers/usb/host/Kconfig |    5 +++++
>  1 file changed, 5 insertions(+)
> 
> Best Regards,
> J.
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

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

end of thread, other threads:[~2013-01-23 19:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-22 14:45 [PATCH 0/2] ohci: fixes Jean-Christophe PLAGNIOL-VILLARD
2013-01-22 14:47 ` [PATCH 1/2] ohci: make it depends on !MMU Jean-Christophe PLAGNIOL-VILLARD
2013-01-22 14:47   ` [PATCH 2/2] ohci: only enable drivers if ohci is enabled Jean-Christophe PLAGNIOL-VILLARD
2013-01-23 19:28 ` [PATCH 0/2] ohci: fixes Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox