From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] pmic_i2c: Return error in case of invalid pmic_i2c_tx_num
Date: Mon, 19 Mar 2012 17:22:32 +0100 [thread overview]
Message-ID: <4F675D48.2070709@denx.de> (raw)
In-Reply-To: <1331933529-7380-1-git-send-email-festevam@gmail.com>
On 16/03/2012 22:32, Fabio Estevam wrote:
> Return error in case of invalid pmic_i2c_tx_num.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> drivers/misc/pmic_i2c.c | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/misc/pmic_i2c.c b/drivers/misc/pmic_i2c.c
> index ad55d64..ebb124d 100644
> --- a/drivers/misc/pmic_i2c.c
> +++ b/drivers/misc/pmic_i2c.c
> @@ -47,6 +47,9 @@ int pmic_reg_write(struct pmic *p, u32 reg, u32 val)
> case 1:
> buf[0] = val & 0xff;
> break;
> + default:
> + printf("%s: invalid tx_num: %d", __func__, pmic_i2c_tx_num);
> + return -1;
> }
>
> if (i2c_write(pmic_i2c_addr, reg, 1, buf, pmic_i2c_tx_num))
> @@ -73,6 +76,9 @@ int pmic_reg_read(struct pmic *p, u32 reg, u32 *val)
> case 1:
> ret_val = buf[0];
> break;
> + default:
> + printf("%s: invalid tx_num: %d", __func__, pmic_i2c_tx_num);
> + return -1;
> }
> memcpy(val, &ret_val, sizeof(ret_val));
Acked-by: Stefano Babic <sbabic@denx.de>
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80 Email: office at denx.de
=====================================================================
next prev parent reply other threads:[~2012-03-19 16:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-16 21:32 [U-Boot] [PATCH] pmic_i2c: Return error in case of invalid pmic_i2c_tx_num Fabio Estevam
2012-03-17 0:55 ` Marek Vasut
2012-03-19 15:57 ` Lukasz Majewski
2012-03-19 16:22 ` Stefano Babic [this message]
2012-03-19 16:46 ` 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=4F675D48.2070709@denx.de \
--to=sbabic@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.