All of lore.kernel.org
 help / color / mirror / Atom feed
From: Heiko Schocher <hs@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] pwm: imx: Prevent NULL pointer dereference
Date: Tue, 26 May 2015 06:27:22 +0200	[thread overview]
Message-ID: <5563F62A.9010808@denx.de> (raw)
In-Reply-To: <1432365408.17001.0.camel@ingics.com>

Hello Axel,

Am 23.05.2015 09:16, schrieb Axel Lin:
> pwm_id_to_reg() can return NULL, so add NULL testing to prevent NULL pointer
> dereference.
>
> Signed-off-by: Axel Lin <axel.lin@ingics.com>
> ---
>   drivers/pwm/pwm-imx.c | 12 ++++++++++++
>   1 file changed, 12 insertions(+)

Acked-by: Heiko Schocher <hs@denx.de>

bye,
Heiko
>
> diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c
> index 40bf027..47799fc 100644
> --- a/drivers/pwm/pwm-imx.c
> +++ b/drivers/pwm/pwm-imx.c
> @@ -18,6 +18,9 @@ int pwm_init(int pwm_id, int div, int invert)
>   {
>   	struct pwm_regs *pwm = (struct pwm_regs *)pwm_id_to_reg(pwm_id);
>
> +	if (!pwm)
> +		return -1;
> +
>   	writel(0, &pwm->ir);
>   	return 0;
>   }
> @@ -28,6 +31,9 @@ int pwm_config(int pwm_id, int duty_ns, int period_ns)
>   	unsigned long period_cycles, duty_cycles, prescale;
>   	u32 cr;
>
> +	if (!pwm)
> +		return -1;
> +
>   	pwm_imx_get_parms(period_ns, duty_ns, &period_cycles, &duty_cycles,
>   			  &prescale);
>
> @@ -47,6 +53,9 @@ int pwm_enable(int pwm_id)
>   {
>   	struct pwm_regs *pwm = (struct pwm_regs *)pwm_id_to_reg(pwm_id);
>
> +	if (!pwm)
> +		return -1;
> +
>   	setbits_le32(&pwm->cr, PWMCR_EN);
>   	return 0;
>   }
> @@ -55,5 +64,8 @@ void pwm_disable(int pwm_id)
>   {
>   	struct pwm_regs *pwm = (struct pwm_regs *)pwm_id_to_reg(pwm_id);
>
> +	if (!pwm)
> +		return;
> +
>   	clrbits_le32(&pwm->cr, PWMCR_EN);
>   }
>

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany

  parent reply	other threads:[~2015-05-26  4:27 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-23  7:16 [U-Boot] [PATCH 1/2] pwm: imx: Prevent NULL pointer dereference Axel Lin
2015-05-23  7:17 ` [U-Boot] [PATCH 2/2] pwm: imx: Remove unreachable code Axel Lin
2015-05-23 10:22   ` Stefano Babic
2015-05-26  4:27   ` Heiko Schocher
2015-05-26 12:14   ` Stefano Babic
2015-05-23 10:22 ` [U-Boot] [PATCH 1/2] pwm: imx: Prevent NULL pointer dereference Stefano Babic
2015-05-26  4:27 ` Heiko Schocher [this message]
2015-05-26 12:14 ` Stefano Babic

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=5563F62A.9010808@denx.de \
    --to=hs@denx.de \
    --cc=u-boot@lists.denx.de \
    /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.