mb/google: Remove space between function name and '('
Change-Id: I0909f24844fab3dfc859ea8c5325344a9872799f Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77764 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
This commit is contained in:
parent
b024e23cfd
commit
fb39a2f91a
|
@ -68,7 +68,7 @@
|
|||
#define SIO_EC_MEMMAP_ENABLE /* EC Memory Map Resources */
|
||||
#define SIO_EC_HOST_ENABLE /* EC Host Interface Resources */
|
||||
#define SIO_EC_ENABLE_PS2K /* Enable PS/2 Keyboard */
|
||||
#define SIO_EC_PS2K_IRQ Interrupt (ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
#define SIO_EC_PS2K_IRQ Interrupt(ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
|
||||
/* Enable EC sync interrupt */
|
||||
#define EC_ENABLE_SYNC_IRQ_GPIO
|
||||
|
|
|
@ -68,7 +68,7 @@ static void mainboard_print_spd_info(const uint8_t *spd, enum memory_type type)
|
|||
char spd_name[SPD_PART_LEN+1] = { 0 };
|
||||
const struct dram_info *info = &spd_info[type];
|
||||
|
||||
assert (info->type_code == spd[SPD_DRAM_TYPE_OFF]);
|
||||
assert(info->type_code == spd[SPD_DRAM_TYPE_OFF]);
|
||||
|
||||
/* Module type */
|
||||
printk(BIOS_INFO, "SPD: module type is %s\n", info->str);
|
||||
|
|
|
@ -68,7 +68,7 @@
|
|||
#define SIO_EC_MEMMAP_ENABLE /* EC Memory Map Resources */
|
||||
#define SIO_EC_HOST_ENABLE /* EC Host Interface Resources */
|
||||
#define SIO_EC_ENABLE_PS2K /* Enable PS/2 Keyboard */
|
||||
#define SIO_EC_PS2K_IRQ Interrupt (ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
#define SIO_EC_PS2K_IRQ Interrupt(ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
|
||||
/* Enable EC sync interrupt */
|
||||
#define EC_ENABLE_SYNC_IRQ_GPIO
|
||||
|
|
|
@ -61,7 +61,7 @@
|
|||
#define SIO_EC_MEMMAP_ENABLE /* EC Memory Map Resources */
|
||||
#define SIO_EC_HOST_ENABLE /* EC Host Interface Resources */
|
||||
#define SIO_EC_ENABLE_PS2K /* Enable PS/2 Keyboard */
|
||||
#define SIO_EC_PS2K_IRQ Interrupt (ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
#define SIO_EC_PS2K_IRQ Interrupt(ResourceConsumer, Level, ActiveLow, Shared) {1}
|
||||
|
||||
/*
|
||||
* Enable EC sync interrupt via GPIO controller, EC_SYNC_IRQ is defined in
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
/* Enable PS/2 Mouse */
|
||||
#define SIO_EC_ENABLE_PS2M
|
||||
#define SIO_EC_PS2M_IRQ Interrupt (ResourceConsumer, Level, ActiveLow, Shared) {12}
|
||||
#define SIO_EC_PS2M_IRQ Interrupt(ResourceConsumer, Level, ActiveLow, Shared) {12}
|
||||
|
||||
#undef MAINBOARD_EC_S3_WAKE_EVENTS
|
||||
#undef MAINBOARD_EC_S3_DEVICE_EVENTS
|
||||
|
|
Loading…
Reference in New Issue