All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Paul Mundt <paul.mundt@nokia.com>
Cc: linux-omap-open-source@linux.omap.com
Subject: Re: [PATCH] ARM: OMAP: Trivial warning fixups.
Date: Tue, 24 Jan 2006 20:07:18 -0800	[thread overview]
Message-ID: <20060125040718.GE4966@atomide.com> (raw)
In-Reply-To: <20060123141342.GB25124@nokia.com>

* Paul Mundt <paul.mundt@nokia.com> [060123 06:21]:
> Bogus type for vfree() in __ioremap_pfn() (should probably use
> remove_vm_area() anyways), and some type mismatches in the OMAP MMC
> driver.
> 
> Signed-off-by: Paul Mundt <paul.mundt@nokia.com>
> 
> ---
> 
>  arch/arm/mm/ioremap.c |    2 +-
>  drivers/mmc/omap.c    |    5 +++--
>  2 files changed, 4 insertions(+), 3 deletions(-)
> 
> dfe121170f696b2557e3c43a5aceffa66b739c9c
> diff --git a/arch/arm/mm/ioremap.c b/arch/arm/mm/ioremap.c
> index de3ce1e..c45bfea 100644
> --- a/arch/arm/mm/ioremap.c
> +++ b/arch/arm/mm/ioremap.c
> @@ -142,7 +142,7 @@ __ioremap_pfn(unsigned long pfn, unsigne
>   		return NULL;
>   	addr = (unsigned long)area->addr;
>   	if (remap_area_pages(addr, pfn, size, flags)) {
> - 		vfree(addr);
> +		vfree((void *)addr);
>   		return NULL;
>   	}
>   	return (void __iomem *) (offset + (char *)addr);

Pushed. Do you want to send the chunk above to RMK?

Tony

      reply	other threads:[~2006-01-25  4:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-01-23 14:13 [PATCH] ARM: OMAP: Trivial warning fixups Paul Mundt
2006-01-25  4:07 ` Tony Lindgren [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060125040718.GE4966@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-omap-open-source@linux.omap.com \
    --cc=paul.mundt@nokia.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.