Can be good to know why... here.

Otherwise, you can add my:
Acked-by: Nicolas Ferre <[email protected]>


On 22/09/2014 17:42, Boris BREZILLON :
> Signed-off-by: Boris BREZILLON <[email protected]>
> Acked-by: Alexandre Belloni <[email protected]>
> ---
>  drivers/rtc/rtc-at91sam9.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/rtc/rtc-at91sam9.c b/drivers/rtc/rtc-at91sam9.c
> index 51f0038..74a9ca0 100644
> --- a/drivers/rtc/rtc-at91sam9.c
> +++ b/drivers/rtc/rtc-at91sam9.c
> @@ -77,14 +77,14 @@ struct sam9_rtc {
>  };
>  
>  #define rtt_readl(rtc, field) \
> -     __raw_readl((rtc)->rtt + AT91_RTT_ ## field)
> +     readl((rtc)->rtt + AT91_RTT_ ## field)
>  #define rtt_writel(rtc, field, val) \
> -     __raw_writel((val), (rtc)->rtt + AT91_RTT_ ## field)
> +     writel((val), (rtc)->rtt + AT91_RTT_ ## field)
>  
>  #define gpbr_readl(rtc) \
> -     __raw_readl((rtc)->gpbr)
> +     readl((rtc)->gpbr)
>  #define gpbr_writel(rtc, val) \
> -     __raw_writel((val), (rtc)->gpbr)
> +     writel((val), (rtc)->gpbr)
>  
>  /*
>   * Read current time and date in RTC
> 


-- 
Nicolas Ferre
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to