DMA Engine development
 help / color / mirror / Atom feed
From: Vinod Koul <vkoul@kernel.org>
To: YueHaibing <yuehaibing@huawei.com>
Cc: dan.j.williams@intel.com, dmaengine@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH -next] dmaengine: iop-adma: Fix -Wint-to-pointer-cast build warning
Date: Wed, 5 Aug 2020 18:42:05 +0530	[thread overview]
Message-ID: <20200805131205.GY12965@vkoul-mobl> (raw)
In-Reply-To: <20200803141035.45284-1-yuehaibing@huawei.com>

On 03-08-20, 22:10, YueHaibing wrote:
> drivers/dma/iop-adma.c:447:13: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> drivers/dma/iop-adma.c:449:4: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
> drivers/dma/iop-adma.c:1301:3: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
> 
> Use void* for dma_desc_pool_virt, dma_addr_t for dma_desc_pool,
> and use %pad to print dma_addr_t.
> 
> Signed-off-by: YueHaibing <yuehaibing@huawei.com>
> ---
>  drivers/dma/iop-adma.c | 17 ++++++++---------
>  1 file changed, 8 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c
> index 3350bffb2e93..8e17e4405959 100644
> --- a/drivers/dma/iop-adma.c
> +++ b/drivers/dma/iop-adma.c
> @@ -415,7 +415,8 @@ static void iop_chan_start_null_xor(struct iop_adma_chan *iop_chan);
>   * */
>  static int iop_adma_alloc_chan_resources(struct dma_chan *chan)
>  {
> -	char *hw_desc;
> +	void *hw_desc;
> +	dma_addr_t dma_desc;
>  	int idx;
>  	struct iop_adma_chan *iop_chan = to_iop_adma_chan(chan);
>  	struct iop_adma_desc_slot *slot = NULL;
> @@ -436,17 +437,16 @@ static int iop_adma_alloc_chan_resources(struct dma_chan *chan)
>  				" %d descriptor slots", idx);
>  			break;
>  		}
> -		hw_desc = (char *) iop_chan->device->dma_desc_pool_virt;
> -		slot->hw_desc = (void *) &hw_desc[idx * IOP_ADMA_SLOT_SIZE];
> +		hw_desc = iop_chan->device->dma_desc_pool_virt;
> +		slot->hw_desc = hw_desc + idx * IOP_ADMA_SLOT_SIZE;

So you want to pointer arithmetic on a void pointer !

Are you sure math is correct here and will work on different compilers?

>  
>  		dma_async_tx_descriptor_init(&slot->async_tx, chan);
>  		slot->async_tx.tx_submit = iop_adma_tx_submit;
>  		INIT_LIST_HEAD(&slot->tx_list);
>  		INIT_LIST_HEAD(&slot->chain_node);
>  		INIT_LIST_HEAD(&slot->slot_node);
> -		hw_desc = (char *) iop_chan->device->dma_desc_pool;
> -		slot->async_tx.phys =
> -			(dma_addr_t) &hw_desc[idx * IOP_ADMA_SLOT_SIZE];
> +		dma_desc = iop_chan->device->dma_desc_pool;
> +		slot->async_tx.phys = dma_desc + idx * IOP_ADMA_SLOT_SIZE;
>  		slot->idx = idx;
>  
>  		spin_lock_bh(&iop_chan->lock);
> @@ -1296,9 +1296,8 @@ static int iop_adma_probe(struct platform_device *pdev)
>  		goto err_free_adev;
>  	}
>  
> -	dev_dbg(&pdev->dev, "%s: allocated descriptor pool virt %p phys %p\n",
> -		__func__, adev->dma_desc_pool_virt,
> -		(void *) adev->dma_desc_pool);
> +	dev_dbg(&pdev->dev, "%s: allocated descriptor pool virt %p phys %pad\n",
> +		__func__, adev->dma_desc_pool_virt, &adev->dma_desc_pool);
>  
>  	adev->id = plat_data->hw_id;
>  
> -- 
> 2.17.1
> 

-- 
~Vinod

      reply	other threads:[~2020-08-05 20:09 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-03 14:10 [PATCH -next] dmaengine: iop-adma: Fix -Wint-to-pointer-cast build warning YueHaibing
2020-08-05 13:12 ` Vinod Koul [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200805131205.GY12965@vkoul-mobl \
    --to=vkoul@kernel.org \
    --cc=dan.j.williams@intel.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=yuehaibing@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox