[coreboot-gerrit] New patch to review for coreboot: commonlib: Remove space after *

Lee Leahy (leroy.p.leahy@intel.com) gerrit at coreboot.org
Fri Mar 10 20:11:20 CET 2017


Lee Leahy (leroy.p.leahy at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/18752

-gerrit

commit c51543298318ed3e9854e2c396763505b407b002
Author: Lee Leahy <leroy.p.leahy at intel.com>
Date:   Fri Mar 10 11:02:11 2017 -0800

    commonlib: Remove space after *
    
    Fix the following error detected by checkpatch.pl:
    
    ERROR: "foo * bar" should be "foo *bar"
    
    TEST=Build and run on Galileo Gen2
    
    Change-Id: If68dfa2b49c61d574f35192f94d1a6642069fa7f
    Signed-off-by: Lee Leahy <Leroy.P.Leahy at intel.com>
---
 src/commonlib/region.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/commonlib/region.c b/src/commonlib/region.c
index bf53b9d..051fe34 100644
--- a/src/commonlib/region.c
+++ b/src/commonlib/region.c
@@ -245,7 +245,7 @@ static void *mdev_mmap(const struct region_device *rd, size_t offset,
 	return &mdev->base[offset];
 }
 
-static int mdev_munmap(const struct region_device * rd __unused,
+static int mdev_munmap(const struct region_device *rd __unused,
 			void *mapping __unused)
 {
 	return 0;



More information about the coreboot-gerrit mailing list