From: Ivan Grimaldi <grimaldi.ivan@gmail.com>
To: a.zummo@towertech.it, mpfj@mimc.co.uk,
alexandre.belloni@free-electrons.com
Cc: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org
Subject: [PATCH v3 1/2] Fixed ds1390_get_reg returned value
Date: Fri, 18 Sep 2015 17:22:38 +0200 [thread overview]
Message-ID: <1442589759-29538-1-git-send-email-grimaldi.ivan@gmail.com> (raw)
spi_write_then_read puts in rx_buf the received data starting from
the first byte of the rx_buf
Signed-off-by: Ivan Grimaldi <grimaldi.ivan@gmail.com>
---
drivers/rtc/rtc-ds1390.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/rtc/rtc-ds1390.c b/drivers/rtc/rtc-ds1390.c
index e67bfcb..a4303b4 100644
--- a/drivers/rtc/rtc-ds1390.c
+++ b/drivers/rtc/rtc-ds1390.c
@@ -62,7 +62,7 @@ static int ds1390_get_reg(struct device *dev, unsigned char address,
if (status != 0)
return status;
- *data = chip->txrx_buf[1];
+ *data = chip->txrx_buf[0];
return 0;
}
--
2.5.2
next reply other threads:[~2015-09-18 15:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-18 15:22 Ivan Grimaldi [this message]
2015-09-18 15:22 ` [PATCH v3 2/2] Added trickle charger device tree binding Ivan Grimaldi
2015-10-03 13:05 ` Alexandre Belloni
2015-10-03 12:40 ` [PATCH v3 1/2] Fixed ds1390_get_reg returned value Alexandre Belloni
-- strict thread matches above, loose matches on Subject: below --
2015-09-18 15:27 Ivan Grimaldi
2015-09-18 15:20 Ivan Grimaldi
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=1442589759-29538-1-git-send-email-grimaldi.ivan@gmail.com \
--to=grimaldi.ivan@gmail.com \
--cc=a.zummo@towertech.it \
--cc=alexandre.belloni@free-electrons.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mpfj@mimc.co.uk \
--cc=rtc-linux@googlegroups.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox