Commit 344201e0 authored by Bharath Vedartham's avatar Bharath Vedartham Committed by Greg Kroah-Hartman

staging: ralink-gdma: Remove space after cast

This fixes the checkpatch.pl check: "No space is necessary after the
cast".
Signed-off-by: default avatarBharath Vedartham <linux.bhar@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4da99b90
...@@ -818,7 +818,7 @@ static int gdma_dma_probe(struct platform_device *pdev) ...@@ -818,7 +818,7 @@ static int gdma_dma_probe(struct platform_device *pdev)
match = of_match_device(gdma_of_match_table, &pdev->dev); match = of_match_device(gdma_of_match_table, &pdev->dev);
if (!match) if (!match)
return -EINVAL; return -EINVAL;
data = (struct gdma_data *) match->data; data = (struct gdma_data *)match->data;
dma_dev = devm_kzalloc(&pdev->dev, dma_dev = devm_kzalloc(&pdev->dev,
struct_size(dma_dev, chan, data->chancnt), struct_size(dma_dev, chan, data->chancnt),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment