[PATCH 1/2] ARM: PXA: PXAFB: Fix double-free issue.
Vasily Khoruzhick
anarsoul at gmail.com
Thu Feb 17 06:06:59 EST 2011
On Thursday 17 February 2011 13:03:21 Russell King - ARM Linux wrote:
> On Thu, Feb 17, 2011 at 09:43:07AM +0200, Vasily Khoruzhick wrote:
> > From: Russell King - ARM Linux <linux at arm.linux.org.uk>
> >
> > From: Russell King - ARM Linux <linux at arm.linux.org.uk>
>
> No need for two From: lines.
It was added accidently, sorry
> > @@ -636,7 +639,8 @@ static void overlay1fb_disable(struct pxafb_layer
> > *ofb)
> >
> > lcd_writel(ofb->fbi, FBR1, ofb->fbi->fdadr[DMA_OV1] | 0x3);
> >
> > if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
> >
> > - pr_warning("%s: timeout disabling overlay1\n", __func__);
> > + pr_warning("%s: timeout disabling overlay1\n",
> > + __func__);
>
> No need for this change.
>
> > @@ -687,6 +691,9 @@ static void overlay2fb_disable(struct pxafb_layer
> > *ofb)
> >
> > {
> >
> > uint32_t lccr5 = lcd_readl(ofb->fbi, LCCR5);
> >
> > + if (!(lcd_readl(ofb->fbi, OVL2C1) & OVLxC1_OEN))
> > + return;
> > +
>
> You don't describe this change in the change log, and this wasn't in my
> patch.
I did, "- Disable overlay only if it was enabled."
> > @@ -696,7 +703,8 @@ static void overlay2fb_disable(struct pxafb_layer
> > *ofb)
> >
> > lcd_writel(ofb->fbi, FBR4, ofb->fbi->fdadr[DMA_OV2_Cr] | 0x3);
> >
> > if (wait_for_completion_timeout(&ofb->branch_done, 1 * HZ) == 0)
> >
> > - pr_warning("%s: timeout disabling overlay2\n", __func__);
> > + pr_warning("%s: timeout disabling overlay2\n",
> > + __func__);
>
> No need for this change.
Ok
More information about the linux-arm-kernel
mailing list