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

Commit 5859554c authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Len Brown
Browse files

PNP: system.c whitespace cleanup



No functional change.

Signed-off-by: default avatarBjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent a8c78f7f
Loading
Loading
Loading
Loading
+11 −21
Original line number Diff line number Diff line
@@ -47,10 +47,7 @@ static void reserve_range(char *pnpid, int start, int end, int port)
	printk(KERN_INFO
		"pnp: %s: %s range 0x%x-0x%x %s reserved\n",
		pnpid, port ? "ioport" : "iomem", start, end,
		NULL != res ? "has been" : "could not be"
	);

	return;
		NULL != res ? "has been" : "could not be");
}

static void reserve_resources_of_dev(struct pnp_dev *dev)
@@ -59,12 +56,9 @@ static void reserve_resources_of_dev( struct pnp_dev *dev )

	for (i = 0; i < PNP_MAX_PORT; i++) {
		if (!pnp_port_valid(dev, i))
			/* end of resources */
			continue;
		if (pnp_port_start(dev, i) == 0)
			/* disabled */
			/* Do nothing */
			continue;
			continue;	/* disabled */
		if (pnp_port_start(dev, i) < 0x100)
			/*
			 * Below 0x100 is only standard PC hardware
@@ -76,14 +70,10 @@ static void reserve_resources_of_dev( struct pnp_dev *dev )
			 */
			continue;
		if (pnp_port_end(dev, i) < pnp_port_start(dev, i))
			/* invalid endpoint */
			/* Do nothing */
			continue;
		reserve_range(
			dev->dev.bus_id,
			pnp_port_start(dev, i),
			pnp_port_end(dev, i), 1
		);
			continue;	/* invalid */

		reserve_range(dev->dev.bus_id, pnp_port_start(dev, i),
			pnp_port_end(dev, i), 1);
	}

	for (i = 0; i < PNP_MAX_MEM; i++) {