On Thu, Mar 26, 2015 at 02:34:14PM +0000, Ben Dooks wrote: > Use endian agnostic IO functions for the watchdog driver for when it > is enabled on ATSAMA5D36 devices running in big endian. > > Signed-off-by: Ben Dooks <[email protected]>
Acked-by: Guenter Roeck <[email protected]> > --- > CC: Boris Brezillon <[email protected]> > CC: Guenter Roeck <[email protected]> > CC: Nicolas Ferre <[email protected]> > CC: Wim Van Sebroeck <[email protected]> > CC: [email protected] > CC: Andrew Victor <[email protected]> > CC: Nicolas Ferre <[email protected]> > CC: Jean-Christophe Plagniol-Villard <[email protected]> > --- > drivers/watchdog/at91sam9_wdt.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c > index 1443b3c..e4698f7 100644 > --- a/drivers/watchdog/at91sam9_wdt.c > +++ b/drivers/watchdog/at91sam9_wdt.c > @@ -40,9 +40,9 @@ > #define DRV_NAME "AT91SAM9 Watchdog" > > #define wdt_read(wdt, field) \ > - __raw_readl((wdt)->base + (field)) > + readl_relaxed((wdt)->base + (field)) > #define wdt_write(wtd, field, val) \ > - __raw_writel((val), (wdt)->base + (field)) > + writel_relaxed((val), (wdt)->base + (field)) > > /* AT91SAM9 watchdog runs a 12bit counter @ 256Hz, > * use this to convert a watchdog > -- > 2.1.4 > -- To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
