linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spi: dw: fixed missing resource_size
@ 2020-11-23  7:02 Tian Tao
  2020-11-25 12:14 ` Serge Semin
  2020-11-25 13:58 ` Mark Brown
  0 siblings, 2 replies; 3+ messages in thread
From: Tian Tao @ 2020-11-23  7:02 UTC (permalink / raw)
  To: fancer.lancer, broonie, linux-spi, linux-kernel

fixed the coccicheck:
drivers/spi/spi-dw-bt1.c:220:27-30: ERROR: Missing
resource_size with mem.

Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
---
 drivers/spi/spi-dw-bt1.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/spi/spi-dw-bt1.c b/drivers/spi/spi-dw-bt1.c
index f382dfad..da4f4d8 100644
--- a/drivers/spi/spi-dw-bt1.c
+++ b/drivers/spi/spi-dw-bt1.c
@@ -217,7 +217,7 @@ static int dw_spi_bt1_sys_init(struct platform_device *pdev,
 	if (mem) {
 		dwsbt1->map = devm_ioremap_resource(&pdev->dev, mem);
 		if (!IS_ERR(dwsbt1->map)) {
-			dwsbt1->map_len = (mem->end - mem->start + 1);
+			dwsbt1->map_len = resource_size(mem);
 			dws->mem_ops.dirmap_create = dw_spi_bt1_dirmap_create;
 			dws->mem_ops.dirmap_read = dw_spi_bt1_dirmap_read;
 		} else {
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] spi: dw: fixed missing resource_size
  2020-11-23  7:02 [PATCH] spi: dw: fixed missing resource_size Tian Tao
@ 2020-11-25 12:14 ` Serge Semin
  2020-11-25 13:58 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Serge Semin @ 2020-11-25 12:14 UTC (permalink / raw)
  To: Tian Tao; +Cc: broonie, linux-spi, linux-kernel

On Mon, Nov 23, 2020 at 03:02:55PM +0800, Tian Tao wrote:
> fixed the coccicheck:
> drivers/spi/spi-dw-bt1.c:220:27-30: ERROR: Missing
> resource_size with mem.

Thanks, Tian!
Acked-by: Serge Semin <fancer.lancer@gmail.com>

> 
> Signed-off-by: Tian Tao <tiantao6@hisilicon.com>
> ---
>  drivers/spi/spi-dw-bt1.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/spi/spi-dw-bt1.c b/drivers/spi/spi-dw-bt1.c
> index f382dfad..da4f4d8 100644
> --- a/drivers/spi/spi-dw-bt1.c
> +++ b/drivers/spi/spi-dw-bt1.c
> @@ -217,7 +217,7 @@ static int dw_spi_bt1_sys_init(struct platform_device *pdev,
>  	if (mem) {
>  		dwsbt1->map = devm_ioremap_resource(&pdev->dev, mem);
>  		if (!IS_ERR(dwsbt1->map)) {
> -			dwsbt1->map_len = (mem->end - mem->start + 1);
> +			dwsbt1->map_len = resource_size(mem);
>  			dws->mem_ops.dirmap_create = dw_spi_bt1_dirmap_create;
>  			dws->mem_ops.dirmap_read = dw_spi_bt1_dirmap_read;
>  		} else {
> -- 
> 2.7.4
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] spi: dw: fixed missing resource_size
  2020-11-23  7:02 [PATCH] spi: dw: fixed missing resource_size Tian Tao
  2020-11-25 12:14 ` Serge Semin
@ 2020-11-25 13:58 ` Mark Brown
  1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2020-11-25 13:58 UTC (permalink / raw)
  To: fancer.lancer, Tian Tao, linux-spi, linux-kernel

On Mon, 23 Nov 2020 15:02:55 +0800, Tian Tao wrote:
> fixed the coccicheck:
> drivers/spi/spi-dw-bt1.c:220:27-30: ERROR: Missing
> resource_size with mem.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: dw: fixed missing resource_size
      commit: 459ea85049b01708e364c34deac24b00909c73ed

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-11-25 13:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-23  7:02 [PATCH] spi: dw: fixed missing resource_size Tian Tao
2020-11-25 12:14 ` Serge Semin
2020-11-25 13:58 ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).