Re: [PATCH] regmap: irq: clear status when disable irq

From: Yi Zhang
Date: Tue Oct 15 2013 - 08:03:37 EST


2013/10/15 Mark Brown <broonie@xxxxxxxxxx>:
> On Tue, Oct 15, 2013 at 01:03:58PM +0800, Yi Zhang wrote:
>
>> + bits_length = d->map->format.val_bytes * BITS_PER_BYTE;
>> + for (j = 0; j < bits_length; j++) {
>> + d->mask_buf[i] &= (0x1 << j);
Yes, this line is wrong, I shouldn't change the mask_buf; I'll change it;
my fault; sorry;
>> + if (!d->mask_buf[i])
>> + ret = regmap_update_bits(d->map, reg,
>> + (0x1 << j), 0);
>> + if (ret != 0)
>> + dev_err(d->map->dev, "Failed to ack 0x%x: %d\n",
>> + reg, ret);
>
> I don't entirely understand this code - what's the loop doing? It
> looks like it's trying to acknowledge things bit by bit but it's doing
> this by updating mask_buf so it looks like it'll corrupt the set of
> masked interrupts. After the zeroth iteration any bits other than bit 0
> should get cleared by the &= (0x1 << j). I'd have expected to just
> write mask_buf back or something similar.
>
> It's possible I'm missing something here but if that is the case perhaps
> some comments would be good.
--
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/