Re: [patch 50/54] ISAPNP: fold isapnp_read_resources() back into isapnp_get_resources()

From: Bjorn Helgaas
Date: Mon Apr 28 2008 - 17:08:09 EST


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-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/