Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c3762b24 authored by Alan's avatar Alan Committed by Greg Kroah-Hartman
Browse files

pcmcia: fix incorrect bracketing on a test



Reported by wonderful 0-Day Test infrastructure.

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1d88436
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,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;
	}