Skip to content

Commit 6d42d79

Browse files
eseanucristiangregkh
authored andcommitted
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: Marius Cristian Eseanu <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent d34898d commit 6d42d79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/base/dma-mapping.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static int dmam_match(struct device *dev, void *res, void *match_data)
6262
* RETURNS:
6363
* Pointer to allocated memory on success, NULL on failure.
6464
*/
65-
void * dmam_alloc_coherent(struct device *dev, size_t size,
65+
void *dmam_alloc_coherent(struct device *dev, size_t size,
6666
dma_addr_t *dma_handle, gfp_t gfp)
6767
{
6868
struct dma_devres *dr;

0 commit comments

Comments
 (0)