Skip to content

Commit

Permalink
drivers: base: dma-mapping: Erase blank space after pointer
Browse files Browse the repository at this point in the history
This patch fixes the following checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Marius Cristian Eseanu <eseanu.cristian@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Marius Cristian Eseanu authored and Greg Kroah-Hartman committed Mar 25, 2015
1 parent d34898d commit 6d42d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/base/dma-mapping.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static int dmam_match(struct device *dev, void *res, void *match_data)
* RETURNS:
* 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)
{
struct dma_devres *dr;
Expand Down

0 comments on commit 6d42d79

Please sign in to comment.