Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
WDT: zynq: Remove raw_writel
Browse files Browse the repository at this point in the history
Remove raw write and use writel_relaxed instead.

Signed-off-by: Harini Katakam <[email protected]>
Signed-off-by: Michal Simek <[email protected]>
  • Loading branch information
harini-katakam authored and Michal Simek committed Apr 1, 2014
1 parent 36968f3 commit 424d995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/watchdog/zynq_wdt.c
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ static struct watchdog_info zynq_wdt_info = {
/* Write access to Registers */
static inline void zynq_wdt_writereg(u32 offset, u32 val)
{
__raw_writel(val, wdt->regs + offset);
writel_relaxed(val, wdt->regs + offset);
}

/*************************Register Map**************************************/
Expand Down

0 comments on commit 424d995

Please sign in to comment.