src/{ec,include,lib}: Use "foo *bar" instead of "foo* bar"
Change-Id: I447aaa1850b7e8b514a8c4c04bf5b426d3d1cd0a Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/27405 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
This commit is contained in:
parent
b0b0c8c60a
commit
c92f5f218f
@ -24,7 +24,7 @@
|
|||||||
#include "ec_message.h"
|
#include "ec_message.h"
|
||||||
|
|
||||||
/* Common utilities */
|
/* Common utilities */
|
||||||
void * __weak crosec_get_buffer(size_t size, int req)
|
void *__weak crosec_get_buffer(size_t size, int req)
|
||||||
{
|
{
|
||||||
printk(BIOS_DEBUG, "crosec_get_buffer() implementation required.\n");
|
printk(BIOS_DEBUG, "crosec_get_buffer() implementation required.\n");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
#include <arch/cpu.h>
|
#include <arch/cpu.h>
|
||||||
|
|
||||||
void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
|
void cache_as_ram_main(unsigned long bist, unsigned long cpu_init_detectedx);
|
||||||
asmlinkage void * post_cache_as_ram(void);
|
asmlinkage void *post_cache_as_ram(void);
|
||||||
asmlinkage void cache_as_ram_new_stack(void);
|
asmlinkage void cache_as_ram_new_stack(void);
|
||||||
|
|
||||||
void disable_cache_as_ram(void);
|
void disable_cache_as_ram(void);
|
||||||
|
|
||||||
void asmlinkage early_all_cores(void);
|
void asmlinkage early_all_cores(void);
|
||||||
|
|
||||||
void * asmlinkage romstage_main(unsigned long bist);
|
void *asmlinkage romstage_main(unsigned long bist);
|
||||||
void asmlinkage romstage_after_car(void);
|
void asmlinkage romstage_after_car(void);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -31,7 +31,7 @@ static const int month_offset[] = {
|
|||||||
0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
|
0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334
|
||||||
};
|
};
|
||||||
|
|
||||||
static const char * const weekdays[] = {
|
static const char *const weekdays[] = {
|
||||||
"Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur",
|
"Sun", "Mon", "Tues", "Wednes", "Thurs", "Fri", "Satur",
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user