ACPI / hotplug / PCI: Drop unnecessary parentheses
authorMika Westerberg <mika.westerberg@linux.intel.com>
Thu, 24 May 2018 18:25:15 +0000 (13:25 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Mon, 4 Jun 2018 17:08:06 +0000 (12:08 -0500)
Remove unnecessary parentheses.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/pci/hotplug/acpiphp_glue.c

index b526565..3a17b29 100644 (file)
@@ -522,7 +522,7 @@ static void enable_slot(struct acpiphp_slot *slot)
                if (!dev) {
                        /* Do not set SLOT_ENABLED flag if some funcs
                           are not added. */
-                       slot->flags &= (~SLOT_ENABLED);
+                       slot->flags &= ~SLOT_ENABLED;
                        continue;
                }
        }
@@ -551,7 +551,7 @@ static void disable_slot(struct acpiphp_slot *slot)
        list_for_each_entry(func, &slot->funcs, sibling)
                acpi_bus_trim(func_to_acpi_device(func));
 
-       slot->flags &= (~SLOT_ENABLED);
+       slot->flags &= ~SLOT_ENABLED;
 }
 
 static bool slot_no_hotplug(struct acpiphp_slot *slot)