Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 11940
b: refs/heads/master
c: 46595ff
h: refs/heads/master
v: v3
  • Loading branch information
John Bowler authored and Russell King committed Oct 30, 2005
1 parent 835df33 commit e5e410f
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: 77bb86a1b9f8b872d8efc33c4f4359f809220252
refs/heads/master: 46595ffbfc8ba79f27cdf8a029ee068b3b34c69f
6 changes: 3 additions & 3 deletions trunk/include/asm-arm/arch-ixp4xx/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ __ixp4xx_writeb(u8 value, u32 addr)
}

static inline void
__ixp4xx_writesb(u32 bus_addr, u8 *vaddr, int count)
__ixp4xx_writesb(u32 bus_addr, const u8 *vaddr, int count)
{
while (count--)
writeb(*vaddr++, bus_addr);
Expand All @@ -136,7 +136,7 @@ __ixp4xx_writew(u16 value, u32 addr)
}

static inline void
__ixp4xx_writesw(u32 bus_addr, u16 *vaddr, int count)
__ixp4xx_writesw(u32 bus_addr, const u16 *vaddr, int count)
{
while (count--)
writew(*vaddr++, bus_addr);
Expand All @@ -154,7 +154,7 @@ __ixp4xx_writel(u32 value, u32 addr)
}

static inline void
__ixp4xx_writesl(u32 bus_addr, u32 *vaddr, int count)
__ixp4xx_writesl(u32 bus_addr, const u32 *vaddr, int count)
{
while (count--)
writel(*vaddr++, bus_addr);
Expand Down

0 comments on commit e5e410f

Please sign in to comment.