diff options
| author | Reinhard Meyer <u-boot@emk-elektronik.de> | 2010-11-03 15:47:20 +0100 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-05-18 07:56:51 +0200 | 
| commit | 372f2783a7b111f567ca541194bc7a75a3d5d64a (patch) | |
| tree | fba8b955db18ef99b22427e8a27a3647907c444c /drivers/watchdog/at91sam9_wdt.c | |
| parent | 9f3fe90f094d4ad6309b5222196d0f8c783784b0 (diff) | |
| download | olio-uboot-2014.01-372f2783a7b111f567ca541194bc7a75a3d5d64a.tar.xz olio-uboot-2014.01-372f2783a7b111f567ca541194bc7a75a3d5d64a.zip | |
AT91: fix related at91 driver files
Signed-off-by: Reinhard Meyer <u-boot@emk-elektronik.de>
Diffstat (limited to 'drivers/watchdog/at91sam9_wdt.c')
| -rw-r--r-- | drivers/watchdog/at91sam9_wdt.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c index 25afae748..62547651a 100644 --- a/drivers/watchdog/at91sam9_wdt.c +++ b/drivers/watchdog/at91sam9_wdt.c @@ -42,7 +42,7 @@  static int at91_wdt_settimeout(unsigned int timeout)  {  	unsigned int reg; -	at91_wdt_t *wd 	= (at91_wdt_t *) AT91_WDT_BASE; +	at91_wdt_t *wd = (at91_wdt_t *) ATMEL_BASE_WDT;  	/* Check if disabled */  	if (readl(&wd->mr) & AT91_WDT_MR_WDDIS) { @@ -69,7 +69,7 @@ static int at91_wdt_settimeout(unsigned int timeout)  void hw_watchdog_reset(void)  { -	at91_wdt_t *wd 	= (at91_wdt_t *) AT91_WDT_BASE; +	at91_wdt_t *wd = (at91_wdt_t *) ATMEL_BASE_WDT;  	writel(AT91_WDT_CR_WDRSTT | AT91_WDT_CR_KEY, &wd->cr);  } |