On Saturday 26 April 2008 05:07:23 pm Rene Herman wrote: > On 25-04-08 20:38, Bjorn Helgaas wrote: > > > + for (i = 0; i < ISAPNP_MAX_MEM; i++) { > > + ret = isapnp_read_word(ISAPNP_CFG_MEM + (i << 3)) << 8; > > + if (!ret) > > + continue; > > + pnp_res = pnp_add_mem_resource(dev, ret, ret, 0); > > + if (pnp_res) > > + pnp_res->index = i; > > + } > > + for (i = 0; i < ISAPNP_MAX_IRQ; i++) { > > + ret = (isapnp_read_word(ISAPNP_CFG_IRQ + (i << 1)) >> > > + 8); > > Truly trivial, but if you kill the useless outer (), it fits on one line... Fixed. I also removed the negation, e.g., we have if (ret) { pnp_res = ... } rather than if (!ret) continue; pnp_res = ... Bjorn -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html