diff options
| author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2018-05-24 13:25:15 -0500 | 
|---|---|---|
| committer | Bjorn Helgaas <bhelgaas@google.com> | 2018-06-04 12:08:06 -0500 | 
| commit | 9337a493623d59202a9d0e7c23fe15cf5bf7c0f8 (patch) | |
| tree | 9e95c9d01938e937cf26ae120421c654f8a30a3a /drivers/pci/hotplug/acpiphp_glue.c | |
| parent | 8f004f4a34fd129622567cbec381101cc5ff7f09 (diff) | |
ACPI / hotplug / PCI: Drop unnecessary parentheses
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>
Diffstat (limited to 'drivers/pci/hotplug/acpiphp_glue.c')
| -rw-r--r-- | drivers/pci/hotplug/acpiphp_glue.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/pci/hotplug/acpiphp_glue.c b/drivers/pci/hotplug/acpiphp_glue.c index b526565b0464..3a17b290df5d 100644 --- a/drivers/pci/hotplug/acpiphp_glue.c +++ b/drivers/pci/hotplug/acpiphp_glue.c @@ -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) | 
