Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 28102
b: refs/heads/master
c: 5c3fddc
h: refs/heads/master
v: v3
  • Loading branch information
Andrew Victor authored and Russell King committed Jun 20, 2006
1 parent 1764a06 commit ad524c8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 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: 907d6deb625cd7ff5fea3ef4b20dfb6c1c19c3ee
refs/heads/master: 5c3fddced9f62f4b175ce400bb96b23f47626e50
7 changes: 7 additions & 0 deletions trunk/arch/arm/mach-at91rm9200/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ obj-m :=
obj-n :=
obj- :=

obj-$(CONFIG_PM) += pm.o

# Board-specific support
obj-$(CONFIG_ARCH_AT91RM9200DK) += board-dk.o
obj-$(CONFIG_MACH_AT91RM9200EK) += board-ek.o
Expand All @@ -28,3 +30,8 @@ obj-$(CONFIG_LEDS) += $(led-y)

# VGA support
#obj-$(CONFIG_FB_S1D13XXX) += ics1523.o


ifeq ($(CONFIG_PM_DEBUG),y)
CFLAGS_pm.o += -DDEBUG
endif
4 changes: 2 additions & 2 deletions trunk/include/asm-arm/arch-at91rm9200/hardware.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,14 @@ static inline unsigned int at91_sys_read(unsigned int reg_offset)
{
void __iomem *addr = (void __iomem *)AT91_VA_BASE_SYS;

return readl(addr + reg_offset);
return __raw_readl(addr + reg_offset);
}

static inline void at91_sys_write(unsigned int reg_offset, unsigned long value)
{
void __iomem *addr = (void __iomem *)AT91_VA_BASE_SYS;

writel(value, addr + reg_offset);
__raw_writel(value, addr + reg_offset);
}
#endif

Expand Down
1 change: 0 additions & 1 deletion trunk/include/asm-arm/arch-at91rm9200/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
#ifndef __ASM_ARCH_IO_H
#define __ASM_ARCH_IO_H

#include <asm/arch/at91rm9200.h>
#include <asm/io.h>

#define IO_SPACE_LIMIT 0xFFFFFFFF
Expand Down
2 changes: 0 additions & 2 deletions trunk/include/asm-arm/arch-at91rm9200/irqs.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@
* symbols in gpio.h for ones handled indirectly as GPIOs.
* We make provision for 4 banks of GPIO.
*/
#include <asm/arch/gpio.h>

#define NR_IRQS (NR_AIC_IRQS + (4 * 32))


Expand Down

0 comments on commit ad524c8

Please sign in to comment.