[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20121116134901.GH4398@game.jcrosoft.org>
Date: Fri, 16 Nov 2012 14:49:01 +0100
From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@...osoft.com>
To: Wenyou Yang <wenyou.yang@...el.com>
Cc: linux-arm-kernel@...ts.infradead.org, wim@...ana.be,
linux-watchdog@...r.kernel.org, linux-kernel@...r.kernel.org,
nicolas.ferre@...el.com, JM.Lin@...el.com
Subject: Re: [PATCH 03/11] watchdog/at91sam9_wdt: change the wdt_read and
wdt_write macro to the inline function
On 15:16 Wed 14 Nov , Wenyou Yang wrote:
> Signed-off-by: Wenyou Yang <wenyou.yang@...el.com>
> ---
> drivers/watchdog/at91sam9_wdt.c | 28 ++++++++++++++++++----------
> 1 file changed, 18 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c
> index 31c914a..98e7d5a 100644
> --- a/drivers/watchdog/at91sam9_wdt.c
> +++ b/drivers/watchdog/at91sam9_wdt.c
> @@ -34,11 +34,6 @@
>
> #define DRV_NAME "AT91SAM9 Watchdog"
>
> -#define wdt_read(field) \
> - __raw_readl(at91wdt_private.base + field)
> -#define wdt_write(field, val) \
> - __raw_writel((val), at91wdt_private.base + field)
> -
> /* AT91SAM9 watchdog runs a 12bit counter @ 256Hz,
> * use this to convert a watchdog
> * value from/to milliseconds.
> @@ -75,13 +70,24 @@ struct at91wdt_drvdata {
>
> /* ......................................................................... */
>
> +static inline unsigned int wdt_read(struct at91wdt_drvdata *driver_data,
> + unsigned int field)
> +{
> + return __raw_readl(driver_data->base + field);
> +}
> +
> +static inline void wdt_write(struct at91wdt_drvdata *driver_data,
> + unsigned int field, unsigned int val)
> +{
> + __raw_writel((val), driver_data->base + field);
> +}
use relaxed version
Best Regrds,
J.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists