From 0ce41f1a116a816e774ebbd1130d27d7ee70e7e9 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 13 Nov 2018 10:03:31 +0100 Subject: [PATCH] src: Add required space after "switch" Change-Id: I85cf93e30606bc7838852bd300a369e79370629a Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/29623 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/arch/riscv/trap_handler.c | 2 +- src/cpu/via/nano/update_ucode.c | 2 +- src/device/device_util.c | 2 +- src/drivers/aspeed/common/ast_main.c | 2 +- src/drivers/xgi/common/xgi_coreboot.c | 2 +- src/mainboard/amd/inagua/BiosCallOuts.c | 2 +- src/mainboard/amd/serengeti_cheetah_fam10/acpi_tables.c | 2 +- src/mainboard/amd/serengeti_cheetah_fam10/get_bus_conf.c | 2 +- src/mainboard/amd/serengeti_cheetah_fam10/mptable.c | 4 ++-- src/mainboard/amd/torpedo/BiosCallOuts.c | 2 +- src/mainboard/apple/macbook21/smihandler.c | 2 +- src/mainboard/google/link/i915.c | 4 ++-- src/mainboard/google/link/mainboard.c | 2 +- src/mainboard/kontron/ktqm77/mainboard.c | 2 +- src/mainboard/lenovo/t60/smihandler.c | 4 ++-- src/mainboard/lenovo/x60/smihandler.c | 4 ++-- src/mainboard/lenovo/z61t/smihandler.c | 4 ++-- src/northbridge/amd/agesa/family14/amdfam14_conf.c | 2 +- src/northbridge/amd/agesa/family15tn/northbridge.c | 2 +- src/northbridge/amd/agesa/family16kb/northbridge.c | 2 +- src/northbridge/amd/amdht/h3ncmn.c | 2 +- src/northbridge/amd/amdht/ht_wrapper.c | 2 +- src/northbridge/intel/x4x/raminit_ddr23.c | 2 +- src/soc/intel/skylake/romstage/romstage_fsp20.c | 2 +- src/superio/fintek/f71863fg/superio.c | 2 +- src/superio/fintek/f71869ad/superio.c | 2 +- src/superio/fintek/f71872/superio.c | 2 +- src/superio/fintek/f81216h/early_serial.c | 2 +- src/superio/fintek/f81216h/superio.c | 4 ++-- src/superio/ite/it8728f/superio.c | 2 +- src/superio/nsc/pc87360/superio.c | 2 +- src/superio/nsc/pc87366/superio.c | 2 +- src/superio/nsc/pc87382/superio.c | 2 +- src/superio/nsc/pc87417/superio.c | 2 +- src/superio/nsc/pc97317/superio.c | 2 +- src/superio/nuvoton/nct5104d/superio.c | 4 ++-- src/superio/nuvoton/nct5572d/superio.c | 2 +- src/superio/nuvoton/nct6779d/superio.c | 2 +- src/superio/nuvoton/wpcm450/superio.c | 2 +- src/superio/smsc/dme1737/superio.c | 2 +- src/superio/smsc/lpc47b272/superio.c | 2 +- src/superio/smsc/lpc47b397/superio.c | 4 ++-- src/superio/smsc/lpc47m10x/superio.c | 2 +- src/superio/smsc/lpc47m15x/superio.c | 2 +- src/superio/smsc/lpc47n217/early_serial.c | 4 ++-- src/superio/smsc/lpc47n217/superio.c | 6 +++--- src/superio/smsc/mec1308/superio.c | 2 +- src/superio/smsc/sch4037/superio.c | 2 +- src/superio/winbond/w83627dhg/superio.c | 2 +- src/superio/winbond/w83627ehg/superio.c | 2 +- src/superio/winbond/w83627hf/superio.c | 4 ++-- src/superio/winbond/w83627thg/superio.c | 2 +- src/superio/winbond/w83627uhg/superio.c | 2 +- src/superio/winbond/w83667hg-a/superio.c | 2 +- src/superio/winbond/w83977tf/superio.c | 2 +- 55 files changed, 67 insertions(+), 67 deletions(-) diff --git a/src/arch/riscv/trap_handler.c b/src/arch/riscv/trap_handler.c index 73c52787ae..e072bf70e2 100644 --- a/src/arch/riscv/trap_handler.c +++ b/src/arch/riscv/trap_handler.c @@ -125,7 +125,7 @@ void trap_handler(trapframe *tf) return; } - switch(tf->cause) { + switch (tf->cause) { case CAUSE_MISALIGNED_FETCH: case CAUSE_FETCH_ACCESS: case CAUSE_ILLEGAL_INSTRUCTION: diff --git a/src/cpu/via/nano/update_ucode.c b/src/cpu/via/nano/update_ucode.c index cb7d1e0283..0ccddc7be0 100644 --- a/src/cpu/via/nano/update_ucode.c +++ b/src/cpu/via/nano/update_ucode.c @@ -73,7 +73,7 @@ static ucode_validity nano_ucode_is_valid(const nano_ucode_header *ucode) static void nano_print_ucode_status(ucode_update_status stat) { - switch(stat) + switch (stat) { case UCODE_UPDATE_SUCCESS: printk(BIOS_INFO, "Microcode update successful.\n"); diff --git a/src/device/device_util.c b/src/device/device_util.c index 2a26a55bd4..38207ebfb8 100644 --- a/src/device/device_util.c +++ b/src/device/device_util.c @@ -168,7 +168,7 @@ const char *dev_path(const struct device *dev) if (!dev) { memcpy(buffer, "", 7); } else { - switch(dev->path.type) { + switch (dev->path.type) { case DEVICE_PATH_NONE: memcpy(buffer, "NONE", 5); break; diff --git a/src/drivers/aspeed/common/ast_main.c b/src/drivers/aspeed/common/ast_main.c index 264ef9d42d..3a0cf209f2 100644 --- a/src/drivers/aspeed/common/ast_main.c +++ b/src/drivers/aspeed/common/ast_main.c @@ -195,7 +195,7 @@ static int ast_detect_chip(struct drm_device *dev, bool *need_post) } /* Print stuff for diagnostic purposes */ - switch(ast->tx_chip_type) { + switch (ast->tx_chip_type) { case AST_TX_SIL164: DRM_INFO("Using Sil164 TMDS transmitter\n"); break; diff --git a/src/drivers/xgi/common/xgi_coreboot.c b/src/drivers/xgi/common/xgi_coreboot.c index 47320fda31..d2acb60301 100644 --- a/src/drivers/xgi/common/xgi_coreboot.c +++ b/src/drivers/xgi/common/xgi_coreboot.c @@ -379,7 +379,7 @@ int xgifb_modeset(struct pci_dev *pdev, struct xgifb_video_info *xgifb_info) xgi_fb.reserved_mask_pos = 0; xgi_fb.reserved_mask_size = 0; - switch(xgifb_info->video_bpp){ + switch (xgifb_info->video_bpp) { case 32: case 24: /* packed into 4-byte words */ diff --git a/src/mainboard/amd/inagua/BiosCallOuts.c b/src/mainboard/amd/inagua/BiosCallOuts.c index c995cff5c8..b6267a69bb 100644 --- a/src/mainboard/amd/inagua/BiosCallOuts.c +++ b/src/mainboard/amd/inagua/BiosCallOuts.c @@ -91,7 +91,7 @@ static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigP TempData8 |= Data8; Write64Mem8(GpioMmioAddr+SB_GPIO_REG179, TempData8); - switch(MemData->ParameterListPtr->DDR3Voltage){ + switch (MemData->ParameterListPtr->DDR3Voltage) { case VOLT1_35: Data8 = Read64Mem8 (GpioMmioAddr+SB_GPIO_REG178); Data8 &= ~(UINT8)BIT6; diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/acpi_tables.c b/src/mainboard/amd/serengeti_cheetah_fam10/acpi_tables.c index 9f273a4d8b..03b849d0d0 100644 --- a/src/mainboard/amd/serengeti_cheetah_fam10/acpi_tables.c +++ b/src/mainboard/amd/serengeti_cheetah_fam10/acpi_tables.c @@ -150,7 +150,7 @@ unsigned long mainboard_write_acpi_tables(struct device *device, current = ALIGN(current, 8); printk(BIOS_DEBUG, "ACPI: * SSDT for PCI%c at %lx\n", c, current); /* pci0 and pci1 are in dsdt */ ssdtx = (acpi_header_t *)current; - switch(sysconf.hcid[i]) { + switch (sysconf.hcid[i]) { case 1: file_name = CONFIG_CBFS_PREFIX "/ssdt2.aml"; break; diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/get_bus_conf.c b/src/mainboard/amd/serengeti_cheetah_fam10/get_bus_conf.c index adf43c0157..4e84fb2062 100644 --- a/src/mainboard/amd/serengeti_cheetah_fam10/get_bus_conf.c +++ b/src/mainboard/amd/serengeti_cheetah_fam10/get_bus_conf.c @@ -151,7 +151,7 @@ void get_bus_conf(void) /* check hcid type here */ sysconf.hcid[i] = get_hcid(i); - switch(sysconf.hcid[i]) { + switch (sysconf.hcid[i]) { case 1: /* 8132 */ case 3: /* 8131 */ diff --git a/src/mainboard/amd/serengeti_cheetah_fam10/mptable.c b/src/mainboard/amd/serengeti_cheetah_fam10/mptable.c index d9596dad07..fb9473f008 100644 --- a/src/mainboard/amd/serengeti_cheetah_fam10/mptable.c +++ b/src/mainboard/amd/serengeti_cheetah_fam10/mptable.c @@ -70,7 +70,7 @@ static void *smp_write_config_table(void *v) if (!(sysconf.pci1234[i] & 0x1)) continue; - switch(sysconf.hcid[i]) { + switch (sysconf.hcid[i]) { case 1: case 3: dev = dev_find_slot(m->bus_8132a[j][0], PCI_DEVFN(m->sbdn3a[j], 1)); @@ -137,7 +137,7 @@ static void *smp_write_config_table(void *v) int jj; struct device *dev; struct resource *res; - switch(sysconf.hcid[i]) { + switch (sysconf.hcid[i]) { case 1: case 3: dev = dev_find_slot(m->bus_8132a[j][0], PCI_DEVFN(m->sbdn3a[j], 1)); diff --git a/src/mainboard/amd/torpedo/BiosCallOuts.c b/src/mainboard/amd/torpedo/BiosCallOuts.c index 56c48c8a8d..e7b0e29584 100644 --- a/src/mainboard/amd/torpedo/BiosCallOuts.c +++ b/src/mainboard/amd/torpedo/BiosCallOuts.c @@ -63,7 +63,7 @@ static AGESA_STATUS board_BeforeDramInit (UINT32 Func, UINTN Data, VOID *ConfigP AcpiMmioAddr = (UINT32)Data16 << 16; GpioMmioAddr = AcpiMmioAddr + GPIO_BASE; - switch(MemData->ParameterListPtr->DDR3Voltage){ + switch (MemData->ParameterListPtr->DDR3Voltage) { case VOLT1_35: Data8 = Read64Mem8 (GpioMmioAddr+SB_GPIO_REG178); Data8 &= ~(UINT8)BIT6; diff --git a/src/mainboard/apple/macbook21/smihandler.c b/src/mainboard/apple/macbook21/smihandler.c index 93920f22d3..ab33801560 100644 --- a/src/mainboard/apple/macbook21/smihandler.c +++ b/src/mainboard/apple/macbook21/smihandler.c @@ -49,7 +49,7 @@ int mainboard_io_trap_handler(int smif) int mainboard_smi_apmc(u8 data) { - switch(data) { + switch (data) { case APM_CNT_ACPI_ENABLE: /* route H8SCI to SCI */ gpi_route_interrupt(GPE_EC_SCI, GPI_IS_SCI); diff --git a/src/mainboard/google/link/i915.c b/src/mainboard/google/link/i915.c index 8bd758b958..e09785d825 100644 --- a/src/mainboard/google/link/i915.c +++ b/src/mainboard/google/link/i915.c @@ -161,7 +161,7 @@ static int run(int index) return index; /* state machine! */ for(i = index, id = &iodefs[i]; id->op; i++, id++){ - switch(id->op){ + switch (id->op) { case M: if (verbose & vmsg) printk(BIOS_SPEW, "%ld: %s\n", globalmicroseconds(), id->msg); @@ -193,7 +193,7 @@ static int run(int index) if (id->addr == PCH_PP_CONTROL){ if (verbose & vio) printk(BIOS_SPEW, "PCH_PP_CONTROL\n"); - switch(id->data & 0xf){ + switch (id->data & 0xf) { case 8: break; case 7: break; default: udelay(100000); diff --git a/src/mainboard/google/link/mainboard.c b/src/mainboard/google/link/mainboard.c index 367e288c26..4919e6baed 100644 --- a/src/mainboard/google/link/mainboard.c +++ b/src/mainboard/google/link/mainboard.c @@ -58,7 +58,7 @@ static int int15_handler(void) printk(BIOS_DEBUG, "%s: INT15 function %04x!\n", __func__, X86_AX); - switch(X86_AX) { + switch (X86_AX) { case 0x5f34: /* * Set Panel Fitting Hook: diff --git a/src/mainboard/kontron/ktqm77/mainboard.c b/src/mainboard/kontron/ktqm77/mainboard.c index 3a3729038d..37f0240662 100644 --- a/src/mainboard/kontron/ktqm77/mainboard.c +++ b/src/mainboard/kontron/ktqm77/mainboard.c @@ -39,7 +39,7 @@ static int int15_handler(void) printk(BIOS_DEBUG, "%s: AX=%04x BX=%04x CX=%04x DX=%04x\n", __func__, X86_AX, X86_BX, X86_CX, X86_DX); - switch(X86_EAX & 0xffff) { + switch (X86_EAX & 0xffff) { case 0x5f34: /* * Set Panel Fitting Hook: diff --git a/src/mainboard/lenovo/t60/smihandler.c b/src/mainboard/lenovo/t60/smihandler.c index bccb7f128a..4e6a68d356 100644 --- a/src/mainboard/lenovo/t60/smihandler.c +++ b/src/mainboard/lenovo/t60/smihandler.c @@ -119,7 +119,7 @@ static void mainboard_smi_handle_ec_sci(void) event = ec_query(); printk(BIOS_DEBUG, "EC event %02x\n", event); - switch(event) { + switch (event) { /* brightness up */ case 0x14: mainboard_smi_brightness_up(); @@ -153,7 +153,7 @@ void mainboard_smi_gpi(u32 gpi) int mainboard_smi_apmc(u8 data) { - switch(data) { + switch (data) { case APM_CNT_ACPI_ENABLE: /* use 0x1600/0x1604 to prevent races with userspace */ ec_set_ports(0x1604, 0x1600); diff --git a/src/mainboard/lenovo/x60/smihandler.c b/src/mainboard/lenovo/x60/smihandler.c index c66474dcc8..6d95ee1adc 100644 --- a/src/mainboard/lenovo/x60/smihandler.c +++ b/src/mainboard/lenovo/x60/smihandler.c @@ -121,7 +121,7 @@ static void mainboard_smi_handle_ec_sci(void) event = ec_query(); printk(BIOS_DEBUG, "EC event %02x\n", event); - switch(event) { + switch (event) { /* brightness up */ case 0x14: mainboard_smi_brightness_up(); @@ -158,7 +158,7 @@ void mainboard_smi_gpi(u32 gpi) int mainboard_smi_apmc(u8 data) { - switch(data) { + switch (data) { case APM_CNT_ACPI_ENABLE: /* use 0x1600/0x1604 to prevent races with userspace */ ec_set_ports(0x1604, 0x1600); diff --git a/src/mainboard/lenovo/z61t/smihandler.c b/src/mainboard/lenovo/z61t/smihandler.c index b93f48ee92..253ab44e90 100644 --- a/src/mainboard/lenovo/z61t/smihandler.c +++ b/src/mainboard/lenovo/z61t/smihandler.c @@ -121,7 +121,7 @@ static void mainboard_smi_handle_ec_sci(void) event = ec_query(); printk(BIOS_DEBUG, "EC event %02x\n", event); - switch(event) { + switch (event) { /* brightness up */ case 0x14: mainboard_smi_brightness_up(); @@ -155,7 +155,7 @@ void mainboard_smi_gpi(u32 gpi) int mainboard_smi_apmc(u8 data) { - switch(data) { + switch (data) { case APM_CNT_ACPI_ENABLE: /* use 0x1600/0x1604 to prevent races with userspace */ ec_set_ports(0x1604, 0x1600); diff --git a/src/northbridge/amd/agesa/family14/amdfam14_conf.c b/src/northbridge/amd/agesa/family14/amdfam14_conf.c index f78e3f55a4..0eabaa8842 100644 --- a/src/northbridge/amd/agesa/family14/amdfam14_conf.c +++ b/src/northbridge/amd/agesa/family14/amdfam14_conf.c @@ -126,7 +126,7 @@ u32 map_oprom_vendev(u32 vendev) { u32 new_vendev = vendev; - switch(vendev) { + switch (vendev) { case 0x10029809: case 0x10029808: case 0x10029807: diff --git a/src/northbridge/amd/agesa/family15tn/northbridge.c b/src/northbridge/amd/agesa/family15tn/northbridge.c index 0361a77eb7..ae0830c731 100644 --- a/src/northbridge/amd/agesa/family15tn/northbridge.c +++ b/src/northbridge/amd/agesa/family15tn/northbridge.c @@ -964,7 +964,7 @@ u32 map_oprom_vendev(u32 vendev) { u32 new_vendev = vendev; - switch(vendev) { + switch (vendev) { case 0x10029900: /* AMD Radeon HD 7660G (Trinity) */ case 0x10029901: /* AMD Radeon HD 7660D (Trinity) */ case 0x10029903: /* AMD Radeon HD 7640G (Trinity) */ diff --git a/src/northbridge/amd/agesa/family16kb/northbridge.c b/src/northbridge/amd/agesa/family16kb/northbridge.c index b3b0ba192a..03db04235a 100644 --- a/src/northbridge/amd/agesa/family16kb/northbridge.c +++ b/src/northbridge/amd/agesa/family16kb/northbridge.c @@ -989,7 +989,7 @@ u32 map_oprom_vendev(u32 vendev) { u32 new_vendev = vendev; - switch(vendev) { + switch (vendev) { case 0x10029830: case 0x10029831: case 0x10029832: diff --git a/src/northbridge/amd/amdht/h3ncmn.c b/src/northbridge/amd/amdht/h3ncmn.c index 6173f17d5a..abb7458303 100644 --- a/src/northbridge/amd/amdht/h3ncmn.c +++ b/src/northbridge/amd/amdht/h3ncmn.c @@ -1252,7 +1252,7 @@ static void ht1SetCFGAddrMap(u8 cfgMapIndex, u8 secBus, u8 subBus, u8 targetNode ******************************************************************************/ static u8 convertBitsToWidth(u8 value, cNorthBridge *nb) { - switch(value) { + switch (value) { case 1: return 16; case 0: return 8; case 5: return 4; diff --git a/src/northbridge/amd/amdht/ht_wrapper.c b/src/northbridge/amd/amdht/ht_wrapper.c index 05b8d12fdc..d005223d96 100644 --- a/src/northbridge/amd/amdht/ht_wrapper.c +++ b/src/northbridge/amd/amdht/ht_wrapper.c @@ -132,7 +132,7 @@ static void AMD_CB_EventNotify (u8 evtClass, u16 event, const u8 *pEventData0) } printk(log_level, ": "); - switch(event) { + switch (event) { case HT_EVENT_COH_EVENTS: case HT_EVENT_COH_NO_TOPOLOGY: case HT_EVENT_COH_LINK_EXCEED: diff --git a/src/northbridge/intel/x4x/raminit_ddr23.c b/src/northbridge/intel/x4x/raminit_ddr23.c index 4e5c0ce923..32fa0d9cf0 100644 --- a/src/northbridge/intel/x4x/raminit_ddr23.c +++ b/src/northbridge/intel/x4x/raminit_ddr23.c @@ -820,7 +820,7 @@ static void program_dll(struct sysinfo *s) FOR_EACH_POPULATED_CHANNEL(s->dimms, i) { const struct dll_setting *setting; - switch(s->selected_timings.mem_clk) { + switch (s->selected_timings.mem_clk) { default: /* Should not happen */ case MEM_CLOCK_667MHz: setting = default_ddr2_667_ctrl; diff --git a/src/soc/intel/skylake/romstage/romstage_fsp20.c b/src/soc/intel/skylake/romstage/romstage_fsp20.c index eed9d8bef0..2a601588d6 100644 --- a/src/soc/intel/skylake/romstage/romstage_fsp20.c +++ b/src/soc/intel/skylake/romstage/romstage_fsp20.c @@ -101,7 +101,7 @@ static void save_dimm_info(void) if (src_dimm->Status != DIMM_PRESENT) continue; - switch(memory_info_hob->MemoryType) { + switch (memory_info_hob->MemoryType) { case MRC_DDR_TYPE_DDR4: ddr_type = MEMORY_TYPE_DDR4; break; diff --git a/src/superio/fintek/f71863fg/superio.c b/src/superio/fintek/f71863fg/superio.c index a19b1d053c..1b37bf25aa 100644 --- a/src/superio/fintek/f71863fg/superio.c +++ b/src/superio/fintek/f71863fg/superio.c @@ -29,7 +29,7 @@ static void f71863fg_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case F71863FG_KBC: res0 = find_resource(dev, PNP_IDX_IO0); diff --git a/src/superio/fintek/f71869ad/superio.c b/src/superio/fintek/f71869ad/superio.c index 5625a354a2..d466a76b6d 100644 --- a/src/superio/fintek/f71869ad/superio.c +++ b/src/superio/fintek/f71869ad/superio.c @@ -30,7 +30,7 @@ static void f71869ad_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case F71869AD_KBC: pc_keyboard_init(NO_AUX_DEVICE); diff --git a/src/superio/fintek/f71872/superio.c b/src/superio/fintek/f71872/superio.c index 47ecf3d290..8634451ca2 100644 --- a/src/superio/fintek/f71872/superio.c +++ b/src/superio/fintek/f71872/superio.c @@ -28,7 +28,7 @@ static void f71872_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case F71872_KBC: pc_keyboard_init(NO_AUX_DEVICE); diff --git a/src/superio/fintek/f81216h/early_serial.c b/src/superio/fintek/f81216h/early_serial.c index 782a9ea683..9e8e48b405 100644 --- a/src/superio/fintek/f81216h/early_serial.c +++ b/src/superio/fintek/f81216h/early_serial.c @@ -38,7 +38,7 @@ static void pnp_exit_conf_state(pnp_devfn_t dev) void f81216h_enable_serial(pnp_devfn_t dev, u16 iobase, mode_key k) { u8 key; - switch(k) { + switch (k) { case MODE_6767: key = 0x67; break; diff --git a/src/superio/fintek/f81216h/superio.c b/src/superio/fintek/f81216h/superio.c index 279187611a..e55ec5776b 100644 --- a/src/superio/fintek/f81216h/superio.c +++ b/src/superio/fintek/f81216h/superio.c @@ -40,7 +40,7 @@ static void pnp_enter_ext_func_mode(struct device *dev) * * See page 17 of data sheet. */ - switch(conf->conf_key_mode) { + switch (conf->conf_key_mode) { case MODE_6767: case MODE_7777: case MODE_8787: @@ -74,7 +74,7 @@ static void f81216h_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case F81216H_SP1: case F81216H_SP2: case F81216H_SP3: diff --git a/src/superio/ite/it8728f/superio.c b/src/superio/ite/it8728f/superio.c index f806d358c5..57b461cccd 100644 --- a/src/superio/ite/it8728f/superio.c +++ b/src/superio/ite/it8728f/superio.c @@ -33,7 +33,7 @@ static void it8728f_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for FDC etc. */ case IT8728F_EC: res = find_resource(dev, PNP_IDX_IO0); diff --git a/src/superio/nsc/pc87360/superio.c b/src/superio/nsc/pc87360/superio.c index 5b590ea351..a9eba4b4b3 100644 --- a/src/superio/nsc/pc87360/superio.c +++ b/src/superio/nsc/pc87360/superio.c @@ -28,7 +28,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87360_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc87366/superio.c b/src/superio/nsc/pc87366/superio.c index feaed3b925..dbb763deea 100644 --- a/src/superio/nsc/pc87366/superio.c +++ b/src/superio/nsc/pc87366/superio.c @@ -28,7 +28,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87366_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc87382/superio.c b/src/superio/nsc/pc87382/superio.c index a5d9a8bdcf..688f08c63c 100644 --- a/src/superio/nsc/pc87382/superio.c +++ b/src/superio/nsc/pc87382/superio.c @@ -26,7 +26,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87382_DOCK: break; diff --git a/src/superio/nsc/pc87417/superio.c b/src/superio/nsc/pc87417/superio.c index c8616f665d..bf33d69fb1 100644 --- a/src/superio/nsc/pc87417/superio.c +++ b/src/superio/nsc/pc87417/superio.c @@ -29,7 +29,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC87417_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/nsc/pc97317/superio.c b/src/superio/nsc/pc97317/superio.c index 3e664d1f1f..9b2cbac6b6 100644 --- a/src/superio/nsc/pc97317/superio.c +++ b/src/superio/nsc/pc97317/superio.c @@ -26,7 +26,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case PC97317_KBCK: pnp_set_logical_device(dev); pnp_set_enable(dev, 0); /* Disable keyboard */ diff --git a/src/superio/nuvoton/nct5104d/superio.c b/src/superio/nuvoton/nct5104d/superio.c index 47687e1122..bc9af3b117 100644 --- a/src/superio/nuvoton/nct5104d/superio.c +++ b/src/superio/nuvoton/nct5104d/superio.c @@ -30,7 +30,7 @@ static void set_irq_trigger_type(struct device *dev, bool trig_level) reg26 |= CR26_LOCK_REG; pnp_write_config(dev, GLOBAL_OPTION_CR26, reg26); - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { //SP1 (UARTA) IRQ type selection (1:level,0:edge) is controlled by CR 10, bit 5 case NCT5104D_SP1: reg10 = pnp_read_config(dev, IRQ_TYPE_SEL_CR10); @@ -116,7 +116,7 @@ static void nct5104d_init(struct device *dev) pnp_enter_conf_mode(dev); - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case NCT5104D_SP1: case NCT5104D_SP2: set_irq_trigger_type(dev, conf->irq_trigger_type != 0); diff --git a/src/superio/nuvoton/nct5572d/superio.c b/src/superio/nuvoton/nct5572d/superio.c index 10542d5591..c6d46bf14c 100644 --- a/src/superio/nuvoton/nct5572d/superio.c +++ b/src/superio/nuvoton/nct5572d/superio.c @@ -44,7 +44,7 @@ static void nct5572d_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case NCT5572D_KBC: /* Enable mouse controller */ diff --git a/src/superio/nuvoton/nct6779d/superio.c b/src/superio/nuvoton/nct6779d/superio.c index 465ef6636a..e5824967d4 100644 --- a/src/superio/nuvoton/nct6779d/superio.c +++ b/src/superio/nuvoton/nct6779d/superio.c @@ -32,7 +32,7 @@ static void nct6779d_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case NCT6779D_KBC: pc_keyboard_init(NO_AUX_DEVICE); diff --git a/src/superio/nuvoton/wpcm450/superio.c b/src/superio/nuvoton/wpcm450/superio.c index 3a0cc5de80..fa7a8a0f83 100644 --- a/src/superio/nuvoton/wpcm450/superio.c +++ b/src/superio/nuvoton/wpcm450/superio.c @@ -28,7 +28,7 @@ static void init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case WPCM450_KBCK: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/dme1737/superio.c b/src/superio/smsc/dme1737/superio.c index 455fd5ec35..a6f9a12a5a 100644 --- a/src/superio/smsc/dme1737/superio.c +++ b/src/superio/smsc/dme1737/superio.c @@ -32,7 +32,7 @@ static void dme1737_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case DME1737_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/lpc47b272/superio.c b/src/superio/smsc/lpc47b272/superio.c index 3f8bc2ba86..2db4fac2f6 100644 --- a/src/superio/smsc/lpc47b272/superio.c +++ b/src/superio/smsc/lpc47b272/superio.c @@ -43,7 +43,7 @@ static void lpc47b272_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47B272_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/lpc47b397/superio.c b/src/superio/smsc/lpc47b397/superio.c index ab2271a8ae..9e943eab31 100644 --- a/src/superio/smsc/lpc47b397/superio.c +++ b/src/superio/smsc/lpc47b397/superio.c @@ -43,7 +43,7 @@ static void lpc47b397_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47B397_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; @@ -55,7 +55,7 @@ static void lpc47b397_pnp_enable_resources(struct device *dev) pnp_enable_resources(dev); pnp_enter_conf_mode(dev); - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47B397_HWM: printk(BIOS_DEBUG, "LPC47B397 SensorBus register access enabled\n"); pnp_set_logical_device(dev); diff --git a/src/superio/smsc/lpc47m10x/superio.c b/src/superio/smsc/lpc47m10x/superio.c index e71b78f1dc..28aa52cb12 100644 --- a/src/superio/smsc/lpc47m10x/superio.c +++ b/src/superio/smsc/lpc47m10x/superio.c @@ -41,7 +41,7 @@ static void lpc47m10x_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47M10X2_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/lpc47m15x/superio.c b/src/superio/smsc/lpc47m15x/superio.c index 23c13115a7..9cc6470e31 100644 --- a/src/superio/smsc/lpc47m15x/superio.c +++ b/src/superio/smsc/lpc47m15x/superio.c @@ -63,7 +63,7 @@ static void lpc47m15x_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47M15X_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/lpc47n217/early_serial.c b/src/superio/smsc/lpc47n217/early_serial.c index 454d77f046..f9ff04e28f 100644 --- a/src/superio/smsc/lpc47n217/early_serial.c +++ b/src/superio/smsc/lpc47n217/early_serial.c @@ -43,7 +43,7 @@ static void lpc47n217_pnp_set_iobase(pnp_devfn_t dev, u16 iobase) /* LPC47N217 requires base ports to be a multiple of 4. */ ASSERT(!(iobase & 0x3)); - switch(dev & 0xFF) { + switch (dev & 0xFF) { case LPC47N217_PP: pnp_write_config(dev, 0x23, (iobase >> 2) & 0xff); break; @@ -74,7 +74,7 @@ static void lpc47n217_pnp_set_enable(pnp_devfn_t dev, int enable) { u8 power_register = 0, power_mask = 0, current_power, new_power; - switch(dev & 0xFF) { + switch (dev & 0xFF) { case LPC47N217_PP: power_register = 0x01; power_mask = 0x04; diff --git a/src/superio/smsc/lpc47n217/superio.c b/src/superio/smsc/lpc47n217/superio.c index e63645e522..0a14e4c44d 100644 --- a/src/superio/smsc/lpc47n217/superio.c +++ b/src/superio/smsc/lpc47n217/superio.c @@ -163,7 +163,7 @@ static void lpc47n217_pnp_set_iobase(struct device *dev, u16 iobase) { ASSERT(!(iobase & 0x3)); - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47N217_PP: pnp_write_config(dev, 0x23, (iobase >> 2) & 0xff); break; @@ -201,7 +201,7 @@ static void lpc47n217_pnp_set_irq(struct device *dev, u8 irq) u8 irq_config_register = 0, irq_config_mask = 0; u8 current_config, new_config; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47N217_PP: irq_config_register = 0x27; irq_config_mask = 0x0F; @@ -231,7 +231,7 @@ static void lpc47n217_pnp_set_enable(struct device *dev, int enable) { u8 power_register = 0, power_mask = 0, current_power, new_power; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case LPC47N217_PP: power_register = 0x01; power_mask = 0x04; diff --git a/src/superio/smsc/mec1308/superio.c b/src/superio/smsc/mec1308/superio.c index 5b9f0da2e8..3e6b0bf3be 100644 --- a/src/superio/smsc/mec1308/superio.c +++ b/src/superio/smsc/mec1308/superio.c @@ -31,7 +31,7 @@ static void mec1308_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case MEC1308_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/smsc/sch4037/superio.c b/src/superio/smsc/sch4037/superio.c index 3f2a1ddeac..5158b12888 100644 --- a/src/superio/smsc/sch4037/superio.c +++ b/src/superio/smsc/sch4037/superio.c @@ -30,7 +30,7 @@ static void sch4037_init(struct device *dev) return; } - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case SCH4037_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/winbond/w83627dhg/superio.c b/src/superio/winbond/w83627dhg/superio.c index 23b73a2dee..363bcc4709 100644 --- a/src/superio/winbond/w83627dhg/superio.c +++ b/src/superio/winbond/w83627dhg/superio.c @@ -38,7 +38,7 @@ static void w83627dhg_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627DHG_SP2: w83627dhg_enable_UR2(dev); break; diff --git a/src/superio/winbond/w83627ehg/superio.c b/src/superio/winbond/w83627ehg/superio.c index db1f98efc1..04dda6edc7 100644 --- a/src/superio/winbond/w83627ehg/superio.c +++ b/src/superio/winbond/w83627ehg/superio.c @@ -83,7 +83,7 @@ static void w83627ehg_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627EHG_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/winbond/w83627hf/superio.c b/src/superio/winbond/w83627hf/superio.c index 21c3016327..e9cc13b872 100644 --- a/src/superio/winbond/w83627hf/superio.c +++ b/src/superio/winbond/w83627hf/superio.c @@ -90,7 +90,7 @@ static void w83627hf_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627HF_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; @@ -110,7 +110,7 @@ static void w83627hf_pnp_enable_resources(struct device *dev) pnp_enable_resources(dev); pnp_enter_conf_mode(dev); - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627HF_HWM: printk(BIOS_DEBUG, "W83627HF HWM SMBus enabled\n"); enable_hwm_smbus(dev); diff --git a/src/superio/winbond/w83627thg/superio.c b/src/superio/winbond/w83627thg/superio.c index 03afe117b7..d741a70941 100644 --- a/src/superio/winbond/w83627thg/superio.c +++ b/src/superio/winbond/w83627thg/superio.c @@ -30,7 +30,7 @@ static void w83627thg_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627THG_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; diff --git a/src/superio/winbond/w83627uhg/superio.c b/src/superio/winbond/w83627uhg/superio.c index d86560f1db..4c7a7adaab 100644 --- a/src/superio/winbond/w83627uhg/superio.c +++ b/src/superio/winbond/w83627uhg/superio.c @@ -58,7 +58,7 @@ static void w83627uhg_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83627UHG_SP1: set_uart_clock_source(dev, 0); break; diff --git a/src/superio/winbond/w83667hg-a/superio.c b/src/superio/winbond/w83667hg-a/superio.c index ceb783dee0..09859cf2c7 100644 --- a/src/superio/winbond/w83667hg-a/superio.c +++ b/src/superio/winbond/w83667hg-a/superio.c @@ -44,7 +44,7 @@ static void w83667hg_a_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ case W83667HG_A_KBC: /* Enable mouse controller */ diff --git a/src/superio/winbond/w83977tf/superio.c b/src/superio/winbond/w83977tf/superio.c index 9b78b84106..40df5b36b8 100644 --- a/src/superio/winbond/w83977tf/superio.c +++ b/src/superio/winbond/w83977tf/superio.c @@ -31,7 +31,7 @@ static void w83977tf_init(struct device *dev) if (!dev->enabled) return; - switch(dev->path.pnp.device) { + switch (dev->path.pnp.device) { case W83977TF_KBC: pc_keyboard_init(NO_AUX_DEVICE); break; -- 2.11.4.GIT