Altera TSE: Correct two typos in original submission
This patch addresses two typos in the original driver submission. One derived from a cut & paste error, and another is a misspelling. Signed-off-by: Vince Bridgers <vbridgers2013@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a804ad0e3b
commit
80175f93f3
1 changed files with 3 additions and 3 deletions
|
@ -84,8 +84,8 @@ int sgdma_initialize(struct altera_tse_private *priv)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
priv->txdescphys = dma_map_single(priv->device, priv->rx_dma_desc,
|
priv->txdescphys = dma_map_single(priv->device, priv->tx_dma_desc,
|
||||||
priv->rxdescmem, DMA_TO_DEVICE);
|
priv->txdescmem, DMA_TO_DEVICE);
|
||||||
|
|
||||||
if (dma_mapping_error(priv->device, priv->txdescphys)) {
|
if (dma_mapping_error(priv->device, priv->txdescphys)) {
|
||||||
sgdma_uninitialize(priv);
|
sgdma_uninitialize(priv);
|
||||||
|
@ -340,7 +340,7 @@ static int sgdma_async_read(struct altera_tse_private *priv)
|
||||||
/* clear control and status */
|
/* clear control and status */
|
||||||
iowrite32(0, &csr->control);
|
iowrite32(0, &csr->control);
|
||||||
|
|
||||||
/* If statuc available, clear those bits */
|
/* If status available, clear those bits */
|
||||||
if (sts & 0xf)
|
if (sts & 0xf)
|
||||||
iowrite32(0xf, &csr->status);
|
iowrite32(0xf, &csr->status);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue