Commit 6d42d79e authored by Marius Cristian Eseanu's avatar Marius Cristian Eseanu Committed by Greg Kroah-Hartman

drivers: base: dma-mapping: Erase blank space after pointer

This patch fixes the following checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"
Signed-off-by: default avatarMarius Cristian Eseanu <eseanu.cristian@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d34898de
...@@ -62,7 +62,7 @@ static int dmam_match(struct device *dev, void *res, void *match_data) ...@@ -62,7 +62,7 @@ static int dmam_match(struct device *dev, void *res, void *match_data)
* RETURNS: * RETURNS:
* Pointer to allocated memory on success, NULL on failure. * Pointer to allocated memory on success, NULL on failure.
*/ */
void * dmam_alloc_coherent(struct device *dev, size_t size, void *dmam_alloc_coherent(struct device *dev, size_t size,
dma_addr_t *dma_handle, gfp_t gfp) dma_addr_t *dma_handle, gfp_t gfp)
{ {
struct dma_devres *dr; struct dma_devres *dr;
......
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