staging: kpc2000: remove unnecessary braces in cell_probe.c
authorSimon Sandström <simon@nikanor.nu>
Thu, 23 May 2019 12:51:41 +0000 (14:51 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 May 2019 07:02:38 +0000 (09:02 +0200)
Fixes checkpatch.pl warnings "braces {} are not necessary for single
statement blocks".

Signed-off-by: Simon Sandström <simon@nikanor.nu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/kpc2000/kpc2000/cell_probe.c

index caf48256aa2edd7caee5bd9e253a6699b89027b9..682d61da5369619551681c3c8bc07389bc733d21 100644 (file)
@@ -273,11 +273,10 @@ int kuio_irqcontrol(struct uio_info *uioinfo, s32 irq_on)
 
        mutex_lock(&pcard->sem);
        mask = readq(pcard->sysinfo_regs_base + REG_INTERRUPT_MASK);
-       if (irq_on) {
+       if (irq_on)
                mask &= ~(1 << (kudev->cte.irq_base_num));
-       } else {
+       else
                mask |= (1 << (kudev->cte.irq_base_num));
-       }
        writeq(mask, pcard->sysinfo_regs_base + REG_INTERRUPT_MASK);
        mutex_unlock(&pcard->sem);
 
@@ -432,12 +431,10 @@ int  kp2000_probe_cores(struct kp2000_device *pcard)
                read_val = readq(pcard->sysinfo_regs_base + ((pcard->core_table_offset + i) * 8));
                parse_core_table_entry(&cte, read_val, pcard->core_table_rev);
                dbg_cte(pcard, &cte);
-               if (cte.type > highest_core_id) {
+               if (cte.type > highest_core_id)
                        highest_core_id = cte.type;
-               }
-               if (cte.type == KP_CORE_ID_INVALID) {
+               if (cte.type == KP_CORE_ID_INVALID)
                        dev_info(&pcard->pdev->dev, "Found Invalid core: %016llx\n", read_val);
-               }
        }
        // Then, iterate over the possible core types.
        for (current_type_id = 1 ; current_type_id <= highest_core_id ; current_type_id++) {