All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Au1xx0: OHCI region size off-by-one
@ 2006-03-20 23:38 Sergei Shtylylov
  0 siblings, 0 replies; 6+ messages in thread
From: Sergei Shtylylov @ 2006-03-20 23:38 UTC (permalink / raw)
  To: Linux-MIPS; +Cc: Manish Lachwani, Jordan Crouse

[-- Attachment #1: Type: text/plain, Size: 121 bytes --]

Hello Manish.

    Au1xx0 OHCI driver claims one byte too many for the memory mapped
controller registers.

WBR, Sergei


[-- Attachment #2: Au1xx0-OHCI-region-size-off-by-one.patch --]
[-- Type: text/plain, Size: 441 bytes --]

diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c
index d7a8f0a..79407ab 100644
--- a/arch/mips/au1000/common/platform.c
+++ b/arch/mips/au1000/common/platform.c
@@ -20,7 +20,7 @@
 static struct resource au1xxx_usb_ohci_resources[] = {
 	[0] = {
 		.start		= USB_OHCI_BASE,
-		.end		= USB_OHCI_BASE + USB_OHCI_LEN,
+		.end		= USB_OHCI_BASE + USB_OHCI_LEN - 1,
 		.flags		= IORESOURCE_MEM,
 	},
 	[1] = {



^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] Au1xx0: OHCI region size off-by-one
@ 2006-03-21  0:54 Sergei Shtylylov
  2006-03-21  1:02 ` Martin Michlmayr
  2006-05-25 18:47 ` Sergei Shtylyov
  0 siblings, 2 replies; 6+ messages in thread
From: Sergei Shtylylov @ 2006-03-21  0:54 UTC (permalink / raw)
  To: Linux-MIPS

[-- Attachment #1: Type: text/plain, Size: 239 bytes --]

Hello.

    Reposting with signoff which I constantly forget about... :-/

    Au1xx0 OHCI driver claims one byte too many for the memory mapped
controller registers.

WBR, Sergei

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>


[-- Attachment #2: Au1xx0-OHCI-region-size-off-by-one.patch --]
[-- Type: text/plain, Size: 442 bytes --]

diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c
index d7a8f0a..79407ab 100644
--- a/arch/mips/au1000/common/platform.c
+++ b/arch/mips/au1000/common/platform.c
@@ -20,7 +20,7 @@
 static struct resource au1xxx_usb_ohci_resources[] = {
 	[0] = {
 		.start		= USB_OHCI_BASE,
-		.end		= USB_OHCI_BASE + USB_OHCI_LEN,
+		.end		= USB_OHCI_BASE + USB_OHCI_LEN - 1,
 		.flags		= IORESOURCE_MEM,
 	},
 	[1] = {




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

end of thread, other threads:[~2006-05-25 18:48 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-03-20 23:38 [PATCH] Au1xx0: OHCI region size off-by-one Sergei Shtylylov
  -- strict thread matches above, loose matches on Subject: below --
2006-03-21  0:54 Sergei Shtylylov
2006-03-21  1:02 ` Martin Michlmayr
2006-03-21  1:05   ` Sergei Shtylylov
2006-03-22 12:01     ` Ralf Baechle
2006-05-25 18:47 ` Sergei Shtylyov

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.