Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57963
b: refs/heads/master
c: 216e39d
h: refs/heads/master
i:
  57961: 6e1f878
  57959: bf06851
v: v3
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Jun 21, 2007
1 parent 96c7687 commit 4c562bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 334280fff3f7201d0fd564fe85e0a6f035ce3f68
refs/heads/master: 216e39db112da4d25a52aeb956e7da70fdd0d94c
6 changes: 3 additions & 3 deletions trunk/include/asm-blackfin/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/
#ifndef __ASSEMBLY__

static inline unsigned char readb(void __iomem *addr)
static inline unsigned char readb(const volatile void __iomem *addr)
{
unsigned int val;
int tmp;
Expand All @@ -35,7 +35,7 @@ static inline unsigned char readb(void __iomem *addr)
return (unsigned char) val;
}

static inline unsigned short readw(void __iomem *addr)
static inline unsigned short readw(const volatile void __iomem *addr)
{
unsigned int val;
int tmp;
Expand All @@ -50,7 +50,7 @@ static inline unsigned short readw(void __iomem *addr)
return (unsigned short) val;
}

static inline unsigned int readl(void __iomem *addr)
static inline unsigned int readl(const volatile void __iomem *addr)
{
unsigned int val;
int tmp;
Expand Down

0 comments on commit 4c562bb

Please sign in to comment.