From: Felipe Balbi <me-uiRdBs8odbtmTBlB0Cgj/Q@public.gmane.org>
To: Andrew Morton
<akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>,
me-uiRdBs8odbtmTBlB0Cgj/Q@public.gmane.org,
Felipe Balbi
<felipe.balbi-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>,
linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: Paul Mundt <lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org>
Subject: Re: drivers/usb/musb/musb_io.h
Date: Fri, 15 Aug 2008 15:38:49 +0300 [thread overview]
Message-ID: <20080815123848.GN16231@frodo> (raw)
In-Reply-To: <20080815115308.GA24513-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 774 bytes --]
On Fri, Aug 15, 2008 at 12:53:08PM +0100, Russell King wrote:
> Shrug. Everything is not a PC. I don't see anything odd about the above.
>
> We basically implement a standard set of IO macros (the __raw_*) stuff
> which is used to implement the standard set of IO support (inl, insl)
> and provide a set of extensions for our platforms (readsl to complement
> insl - named precisely the same way because that's what they are) because
> the generic stuff doesn't cover all our needs.
>
> > I assume that "bytelen" should have been "bytecount" or similar.
>
> bytelen and bytecount mean the same thing to me.
Thanks Russel for the clarification.
So I think until we have a better solution we'll need the attached patch
to musb_io.h
Paul, is it ok for you ?
--
balbi
[-- Attachment #2: 0001-musb-superh-also-provides-read-write-friends.diff --]
[-- Type: text/x-diff, Size: 1051 bytes --]
From f3cba688c0447504f3812c570cf37732e1f9493b Mon Sep 17 00:00:00 2001
From: Paul Mundt <lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org>
Date: Fri, 15 Aug 2008 10:51:56 +0300
Subject: [PATCH] musb: superh also provides read/write friends
do not redefine them unless we're not building for
scuch archs.
Signed-off-by: Paul Mundt <lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org>
Signed-off-by: Felipe Balbi <felipe.balbi-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org>
---
drivers/usb/musb/musb_io.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/usb/musb/musb_io.h b/drivers/usb/musb/musb_io.h
index 6bbedae..d0f812a 100644
--- a/drivers/usb/musb/musb_io.h
+++ b/drivers/usb/musb/musb_io.h
@@ -37,7 +37,7 @@
#include <linux/io.h>
-#ifndef CONFIG_ARM
+#if !defined(CONFIG_ARM) && !defined(CONFIG_SUPERH)
static inline void readsl(const void __iomem *addr, void *buf, int len)
{ insl((unsigned long)addr, buf, len); }
static inline void readsw(const void __iomem *addr, void *buf, int len)
--
1.6.0.rc3.6.ga0653
WARNING: multiple messages have this Message-ID (diff)
From: Felipe Balbi <me@felipebalbi.com>
To: Andrew Morton <akpm@linux-foundation.org>,
me@felipebalbi.com, Felipe Balbi <felipe.balbi@nokia.com>,
linux-usb@vger.kernel.org, linux-arch@vger.kernel.org
Cc: Paul Mundt <lethal@linux-sh.org>
Subject: Re: drivers/usb/musb/musb_io.h
Date: Fri, 15 Aug 2008 15:38:49 +0300 [thread overview]
Message-ID: <20080815123848.GN16231@frodo> (raw)
Message-ID: <20080815123849.APdi5FFWUlkJbHCBwDF_h1Y7Ohx5u1QRWLvaABECSs0@z> (raw)
In-Reply-To: <20080815115308.GA24513@flint.arm.linux.org.uk>
[-- Attachment #1: Type: text/plain, Size: 774 bytes --]
On Fri, Aug 15, 2008 at 12:53:08PM +0100, Russell King wrote:
> Shrug. Everything is not a PC. I don't see anything odd about the above.
>
> We basically implement a standard set of IO macros (the __raw_*) stuff
> which is used to implement the standard set of IO support (inl, insl)
> and provide a set of extensions for our platforms (readsl to complement
> insl - named precisely the same way because that's what they are) because
> the generic stuff doesn't cover all our needs.
>
> > I assume that "bytelen" should have been "bytecount" or similar.
>
> bytelen and bytecount mean the same thing to me.
Thanks Russel for the clarification.
So I think until we have a better solution we'll need the attached patch
to musb_io.h
Paul, is it ok for you ?
--
balbi
[-- Attachment #2: 0001-musb-superh-also-provides-read-write-friends.diff --]
[-- Type: text/x-diff, Size: 967 bytes --]
From f3cba688c0447504f3812c570cf37732e1f9493b Mon Sep 17 00:00:00 2001
From: Paul Mundt <lethal@linux-sh.org>
Date: Fri, 15 Aug 2008 10:51:56 +0300
Subject: [PATCH] musb: superh also provides read/write friends
do not redefine them unless we're not building for
scuch archs.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com>
---
drivers/usb/musb/musb_io.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/usb/musb/musb_io.h b/drivers/usb/musb/musb_io.h
index 6bbedae..d0f812a 100644
--- a/drivers/usb/musb/musb_io.h
+++ b/drivers/usb/musb/musb_io.h
@@ -37,7 +37,7 @@
#include <linux/io.h>
-#ifndef CONFIG_ARM
+#if !defined(CONFIG_ARM) && !defined(CONFIG_SUPERH)
static inline void readsl(const void __iomem *addr, void *buf, int len)
{ insl((unsigned long)addr, buf, len); }
static inline void readsw(const void __iomem *addr, void *buf, int len)
--
1.6.0.rc3.6.ga0653
next prev parent reply other threads:[~2008-08-15 12:38 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20080814215200.27f79a59.akpm@linux-foundation.org>
[not found] ` <20080815073750.GG16231@frodo>
[not found] ` <20080815074318.GH16231@frodo>
[not found] ` <20080815010227.121e5e4b.akpm@linux-foundation.org>
[not found] ` <20080815081154.GJ16231@frodo>
2008-08-15 8:31 ` drivers/usb/musb/musb_io.h Andrew Morton
[not found] ` <20080815013148.b9dfc7ad.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2008-08-15 8:52 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-15 8:52 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-15 9:11 ` drivers/usb/musb/musb_io.h Andrew Morton
2008-08-15 9:11 ` drivers/usb/musb/musb_io.h Andrew Morton
2008-08-15 9:23 ` drivers/usb/musb/musb_io.h Felipe Balbi
[not found] ` <20080815021131.dfab416a.akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>
2008-08-15 11:53 ` drivers/usb/musb/musb_io.h Russell King
2008-08-15 11:53 ` drivers/usb/musb/musb_io.h Russell King
[not found] ` <20080815115308.GA24513-f404yB8NqCZvn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2008-08-15 12:38 ` Felipe Balbi [this message]
2008-08-15 12:38 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-15 13:17 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-15 13:17 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-18 6:40 ` drivers/usb/musb/musb_io.h Geert Uytterhoeven
2008-08-15 21:46 ` drivers/usb/musb/musb_io.h David Brownell
2008-08-15 22:22 ` drivers/usb/musb/musb_io.h Felipe Balbi
2008-08-16 1:53 ` drivers/usb/musb/musb_io.h David Brownell
2008-08-16 1:53 ` drivers/usb/musb/musb_io.h David Brownell
2008-08-16 2:05 ` drivers/usb/musb/musb_io.h David Brownell
2008-08-16 9:29 ` drivers/usb/musb/musb_io.h Felipe Balbi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080815123848.GN16231@frodo \
--to=me-uirdbs8odbtmtblb0cgj/q@public.gmane.org \
--cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
--cc=felipe.balbi-xNZwKgViW5gAvxtiuMwx3w@public.gmane.org \
--cc=lethal-M7jkjyW5wf5g9hUCZPvPmw@public.gmane.org \
--cc=linux-arch-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).