Browse Source

Revert "pcmcia: fix incorrect bracketing on a test"

This reverts commit c3762b248faf9db2b00b36c0535f79758942069e.

The file this fixes is about to be reverted.

Reported-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Greg Kroah-Hartman 10 years ago
parent
commit
05c0006776
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/pcmcia/rsrc_pci.c

+ 1 - 1
drivers/pcmcia/rsrc_pci.c

@@ -155,7 +155,7 @@ static struct resource *res_pci_find_mem(u_long base, u_long num,
 
 static int res_pci_init(struct pcmcia_socket *s)
 {
-	if (!s->cb_dev || !(s->features & SS_CAP_PAGE_REGS)) {
+	if (!s->cb_dev || (!s->features & SS_CAP_PAGE_REGS)) {
 		dev_err(&s->dev, "not supported by res_pci\n");
 		return -EOPNOTSUPP;
 	}