src/{arch,commonlib,cpu}: Use "foo *bar" instead of "foo* bar"

Change-Id: I8e4118c5c5d70719ad7dc5f9ff9f86d93fa498ac
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26942
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
This commit is contained in:
Elyes HAOUAS
2018-07-08 12:30:02 +02:00
committed by Patrick Georgi
parent 2106638ec2
commit 6c9737b1ac
8 changed files with 10 additions and 10 deletions

View File

@ -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 */

View File

@ -31,7 +31,7 @@
#define HEX_CAPACITY_MULTIPLIER 1024ULL
struct capacity {
const char * const units;
const char *const units;
uint64_t bytes;
};