Commit 6d429c4b authored by Russell King's avatar Russell King

[ARM] Remove extraneous return statement.

parent bb37e97f
......@@ -73,7 +73,7 @@ pci_unmap_single(struct pci_dev *hwdev, dma_addr_t handle, size_t size, int dir)
return;
}
return dma_unmap_single(hwdev ? &hwdev->dev : NULL, handle, size, dir);
dma_unmap_single(hwdev ? &hwdev->dev : NULL, handle, size, dir);
}
static inline int
......
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