On Mon, 2011-09-26 at 21:52 -0400, Kevin McKinney wrote:
> On Mon, Sep 26, 2011 at 4:45 PM, Kevin McKinney <[email protected]> wrote:
> > On Mon, Sep 26, 2011 at 12:00 PM, Joe Perches <[email protected]> wrote:
> >> On Sun, 2011-09-25 at 21:15 -0400, Kevin McKinney wrote:
> >>> This patch fixes two issues within bcm/Bcmchar.c.
[]
> >>               Bufflen = IoBuffer.OutputLength + (4 - 
> >> IoBuffer.OutputLength%4)%4;
> >> Not your issue, but because it's near the patched bits:
> >> Because of the two modulos, this is not straightforward.
> >> Perhaps a temporary helps.
> >>                Bufflen = IoBuffer.OutputLength;
> >>                u16 extra = Bufflen % 4;
> >>                if (extra)
> >>                        Bufflen += 4 - extra;
> On second thought; if it is okay, I will submit another patch to fix
> this issue.

Of course it's OK Kevin.

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to