diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-10 11:02:11 -0800 |
---|---|---|
committer | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-10 22:27:51 +0100 |
commit | 36d5b41e621207ffe722bcb98b497ec2c9b35d5a (patch) | |
tree | eae57434b5b2fd578987f0903fc421a3dd7f8ae9 | |
parent | 72c60a472b393363722e0c6093f696ee28a7f56a (diff) |
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@intel.com>
Reviewed-on: https://review.coreboot.org/18752
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
-rw-r--r-- | src/commonlib/region.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commonlib/region.c b/src/commonlib/region.c index bf53b9dda8..051fe3479b 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; |