Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1600450

Re: [PATCH] mfd: stm32-timers: fix max register

From Lee Jones <lee.jones@linaro.org>
Newsgroups linux.kernel
Subject Re: [PATCH] mfd: stm32-timers: fix max register
Date 2017-03-14 15:10 +0100
Message-ID <tkVjc-1eJ-27@gated-at.bofh.it> (permalink)
References <tb2OZ-5Ei-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Wed, 15 Feb 2017, Fabrice Gasnier wrote:

> STM32 timers register bank size is 0x400. Fix regmap max_register.
> 
> Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
> ---
>  drivers/mfd/stm32-timers.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.

> diff --git a/drivers/mfd/stm32-timers.c b/drivers/mfd/stm32-timers.c
> index 192cbb6..2182f00 100644
> --- a/drivers/mfd/stm32-timers.c
> +++ b/drivers/mfd/stm32-timers.c
> @@ -15,7 +15,7 @@
>  	.reg_bits = 32,
>  	.val_bits = 32,
>  	.reg_stride = sizeof(u32),
> -	.max_register = 0x400,
> +	.max_register = 0x3fc,
>  };
>  
>  static void stm32_timers_get_arr_size(struct stm32_timers *ddata)

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

Back to linux.kernel | Previous | Next | Find similar | Unroll thread


Thread

Re: [PATCH] mfd: stm32-timers: fix max register Lee Jones <lee.jones@linaro.org> - 2017-03-14 15:10 +0100

csiph-web