Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95607
b: refs/heads/master
c: 4f452e8
h: refs/heads/master
i:
  95605: 51ab973
  95603: 837809e
  95599: 636641a
v: v3
  • Loading branch information
Kumar Gala authored and Greg Kroah-Hartman committed Apr 30, 2008
1 parent f90321f commit 0d877f0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: a4ca6617421188f50774780cdc91c3782b7d08fe
refs/heads/master: 4f452e8aa492c0b8028ca9b4bdb4d018ba28c6c7
4 changes: 2 additions & 2 deletions trunk/include/linux/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ static inline void devm_ioport_unmap(struct device *dev, void __iomem *addr)
}
#endif

void __iomem * devm_ioremap(struct device *dev, unsigned long offset,
void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
unsigned long size);
void __iomem * devm_ioremap_nocache(struct device *dev, unsigned long offset,
void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
unsigned long size);
void devm_iounmap(struct device *dev, void __iomem *addr);
int check_signature(const volatile void __iomem *io_addr,
Expand Down
4 changes: 2 additions & 2 deletions trunk/lib/devres.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ static int devm_ioremap_match(struct device *dev, void *res, void *match_data)
*
* Managed ioremap(). Map is automatically unmapped on driver detach.
*/
void __iomem *devm_ioremap(struct device *dev, unsigned long offset,
void __iomem *devm_ioremap(struct device *dev, resource_size_t offset,
unsigned long size)
{
void __iomem **ptr, *addr;
Expand Down Expand Up @@ -49,7 +49,7 @@ EXPORT_SYMBOL(devm_ioremap);
* Managed ioremap_nocache(). Map is automatically unmapped on driver
* detach.
*/
void __iomem *devm_ioremap_nocache(struct device *dev, unsigned long offset,
void __iomem *devm_ioremap_nocache(struct device *dev, resource_size_t offset,
unsigned long size)
{
void __iomem **ptr, *addr;
Expand Down

0 comments on commit 0d877f0

Please sign in to comment.