From 6c9737b1ac5b71f705350a960dee0e68b9afb440 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Sun, 8 Jul 2018 12:30:02 +0200 Subject: src/{arch,commonlib,cpu}: Use "foo *bar" instead of "foo* bar" Change-Id: I8e4118c5c5d70719ad7dc5f9ff9f86d93fa498ac Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/26942 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Rudolph --- src/commonlib/storage/mmc.c | 2 +- src/commonlib/storage/storage.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commonlib') diff --git a/src/commonlib/storage/mmc.c b/src/commonlib/storage/mmc.c index d88e469291..e09d826782 100644 --- a/src/commonlib/storage/mmc.c +++ b/src/commonlib/storage/mmc.c @@ -529,7 +529,7 @@ int mmc_set_partition(struct storage_media *media, const char *mmc_partition_name(struct storage_media *media, unsigned int partition_number) { - static const char * const partition_name[8] = { + static const char *const partition_name[8] = { "User", /* 0 */ "Boot 1", /* 1 */ "Boot 2", /* 2 */ diff --git a/src/commonlib/storage/storage.c b/src/commonlib/storage/storage.c index d2b566f71e..927e12ff30 100644 --- a/src/commonlib/storage/storage.c +++ b/src/commonlib/storage/storage.c @@ -31,7 +31,7 @@ #define HEX_CAPACITY_MULTIPLIER 1024ULL struct capacity { - const char * const units; + const char *const units; uint64_t bytes; }; -- cgit v1.2.3