src/southbridge: Add required space before the open parenthesis
Change-Id: If46db4d210e4b25221436ad1222433d3b00e08e7 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/26035 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
c4c2d4ec7a
commit
f9de5a4b43
|
@ -104,7 +104,7 @@ static u8 get_nb_rev(device_t nb_dev)
|
|||
{
|
||||
u8 reg;
|
||||
reg = pci_read_config8(nb_dev, 0x8); /* copy from CIM, can't find in doc */
|
||||
switch(reg & 3)
|
||||
switch (reg & 3)
|
||||
{
|
||||
case 0x00:
|
||||
reg = REV_SR5650_A11;
|
||||
|
|
|
@ -84,7 +84,7 @@ static void bcm5785_lpc_enable_childrens_resources(device_t dev)
|
|||
base = res->base;
|
||||
end = resource_end(res);
|
||||
printk(BIOS_DEBUG, "bcm5785lpc decode:%s, base=0x%08lx, end=0x%08lx\n",dev_path(child),base, end);
|
||||
switch(base) {
|
||||
switch (base) {
|
||||
case 0x60: //KBC
|
||||
case 0x64:
|
||||
reg |= (1<<29); break;
|
||||
|
|
|
@ -864,7 +864,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data)
|
|||
p = &mbp_item_hdr;
|
||||
printk(BIOS_INFO, "ME: MBP item header %8.8x\n", *((u32*)p));
|
||||
|
||||
switch(mbp_item_id) {
|
||||
switch (mbp_item_id) {
|
||||
case 0x101:
|
||||
SET_UP_COPY(fw_version_name);
|
||||
|
||||
|
|
|
@ -861,7 +861,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data)
|
|||
p = &mbp_item_hdr;
|
||||
printk(BIOS_INFO, "ME: MBP item header %8.8x\n", *((u32*)p));
|
||||
|
||||
switch(mbp_item_id) {
|
||||
switch (mbp_item_id) {
|
||||
case 0x101:
|
||||
SET_UP_COPY(fw_version_name);
|
||||
|
||||
|
|
|
@ -816,7 +816,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data)
|
|||
p = &mbp_item_hdr;
|
||||
printk(BIOS_INFO, "ME: MBP item header %8.8x\n", *((u32*)p));
|
||||
|
||||
switch(mbp_item_id) {
|
||||
switch (mbp_item_id) {
|
||||
case 0x101:
|
||||
SET_UP_COPY(fw_version_name);
|
||||
|
||||
|
|
|
@ -1016,7 +1016,7 @@ static int intel_me_read_mbp(me_bios_payload *mbp_data, device_t dev)
|
|||
for (i = 0; i < mbp->header.mbp_size - 1;) {
|
||||
mbp_item_header *item = (void *)&mbp->data[i];
|
||||
|
||||
switch(MBP_MAKE_IDENT(item->app_id, item->item_id)) {
|
||||
switch (MBP_MAKE_IDENT(item->app_id, item->item_id)) {
|
||||
case MBP_IDENT(KERNEL, FW_VER):
|
||||
ASSIGN_FIELD_PTR(fw_version_name, &mbp->data[i+1]);
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ static void mcp55_lpc_enable_childrens_resources(device_t dev)
|
|||
base = res->base;
|
||||
end = resource_end(res);
|
||||
printk(BIOS_DEBUG, "mcp55 lpc decode:%s, base=0x%08lx, end=0x%08lx\n",dev_path(child),base, end);
|
||||
switch(base) {
|
||||
switch (base) {
|
||||
case 0x3f8: /* COM1 */
|
||||
reg |= (1 << 0);
|
||||
break;
|
||||
|
|
|
@ -203,7 +203,7 @@ static void sis966_lpc_enable_childrens_resources(device_t dev)
|
|||
base = res->base;
|
||||
end = resource_end(res);
|
||||
printk(BIOS_DEBUG, "sis966 lpc decode:%s, base=0x%08lx, end=0x%08lx\n",dev_path(child),base, end);
|
||||
switch(base) {
|
||||
switch (base) {
|
||||
case 0x3f8: // COM1
|
||||
reg |= (1<<0); break;
|
||||
case 0x2f8: // COM2
|
||||
|
|
|
@ -80,7 +80,7 @@ void sis966_enable(device_t dev)
|
|||
}
|
||||
|
||||
devfn = (dev->path.pci.devfn) & ~7;
|
||||
switch(deviceid) {
|
||||
switch (deviceid) {
|
||||
case PCI_DEVICE_ID_SIS_SIS966_USB:
|
||||
devfn -= (1<<3);
|
||||
index = 8;
|
||||
|
|
Loading…
Reference in New Issue