Linux RTC
 help / color / mirror / Atom feed
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Vladimir Zapolskiy <vz@mleia.com>
Cc: Alessandro Zummo <a.zummo@towertech.it>,
	rtc-linux@googlegroups.com,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: [rtc-linux] [PATCH 00/11] rtc: clean up bin attribute read/write functions
Date: Sat, 15 Aug 2015 00:21:37 +0200	[thread overview]
Message-ID: <20150814222137.GO22269@piout.net> (raw)
In-Reply-To: <1437947316-5652-1-git-send-email-vz@mleia.com>

On 27/07/2015 at 00:48:25 +0300, Vladimir Zapolskiy wrote :
> This change removes a number of redundant checks on bin attribute
> client's side, the same checks are done by sysfs_kf_bin_read() or
> sysfs_kf_bin_write() caller from fs/sysfs/file.c.
> 
> Note, drivers/rtc/rtc-ds1685.c may be updated in a similar way,
> however due to #ifndef magic involved this task is not done.
> 
> No functional change intended.
> 
> Vladimir Zapolskiy (11):
>   rtc: cmos: clean up cmos_nvram_read()/cmos_nvram_write()
>   rtc: ds1305: clean up ds1305_nvram_read()/ds1305_nvram_write()
>   rtc: ds1307: clean up ds1307_nvram_read()/ds1307_nvram_write()
>   rtc: ds1343: clean up ds1343_nvram_read()/ds1343_nvram_write()
>   rtc: ds1511: clean up ds1511_nvram_read()/ds1511_nvram_write()
>   rtc: ds1553: clean up ds1553_nvram_read()/ds1553_nvram_write()
>   rtc: ds1742: clean up ds1742_nvram_read()/ds1742_nvram_write()
>   rtc: m48t59: clean up m48t59_nvram_read()/m48t59_nvram_write()
>   rtc: rp5c01: clean up rp5c01_nvram_read()/rp5c01_nvram_write()
>   rtc: stk17ta8: clean up stk17ta8_nvram_read()/stk17ta8_nvram_write()
>   rtc: tx4939: clean up tx4939_rtc_nvram_read()/tx4939_rtc_nvram_write()
> 
>  drivers/rtc/rtc-cmos.c     | 13 -------------
>  drivers/rtc/rtc-ds1305.c   | 18 ------------------
>  drivers/rtc/rtc-ds1307.c   | 14 --------------
>  drivers/rtc/rtc-ds1343.c   | 12 ------------
>  drivers/rtc/rtc-ds1511.c   | 38 ++++++++------------------------------
>  drivers/rtc/rtc-ds1553.c   |  4 ++--
>  drivers/rtc/rtc-ds1742.c   |  4 ++--
>  drivers/rtc/rtc-m48t59.c   | 16 ++++++++--------
>  drivers/rtc/rtc-rp5c01.c   |  4 ++--
>  drivers/rtc/rtc-stk17ta8.c |  4 ++--
>  drivers/rtc/rtc-tx4939.c   |  6 ++----
>  11 files changed, 26 insertions(+), 107 deletions(-)
> 

All applied (v2 when available), thanks


-- 
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

-- 
-- 
You received this message because you are subscribed to "rtc-linux".
Membership options at http://groups.google.com/group/rtc-linux .
Please read http://groups.google.com/group/rtc-linux/web/checklist
before submitting a driver.
--- 
You received this message because you are subscribed to the Google Groups "rtc-linux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rtc-linux+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

      parent reply	other threads:[~2015-08-14 22:21 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-26 21:48 [rtc-linux] [PATCH 00/11] rtc: clean up bin attribute read/write functions Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 01/11] rtc: cmos: clean up cmos_nvram_read()/cmos_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 02/11] rtc: ds1305: clean up ds1305_nvram_read()/ds1305_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 03/11] rtc: ds1307: clean up ds1307_nvram_read()/ds1307_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 04/11] rtc: ds1343: clean up ds1343_nvram_read()/ds1343_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 05/11] rtc: ds1511: clean up ds1511_nvram_read()/ds1511_nvram_write() Vladimir Zapolskiy
2015-08-05  8:24   ` [rtc-linux] " Alexandre Belloni
2015-08-05 16:22     ` Vladimir Zapolskiy
2015-08-05 18:12   ` [rtc-linux] [PATCH v2 " Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 06/11] rtc: ds1553: clean up ds1553_nvram_read()/ds1553_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 07/11] rtc: ds1742: clean up ds1742_nvram_read()/ds1742_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 08/11] rtc: m48t59: clean up m48t59_nvram_read()/m48t59_nvram_write() Vladimir Zapolskiy
2015-08-05  8:27   ` [rtc-linux] " Alexandre Belloni
2015-08-05 16:04     ` Vladimir Zapolskiy
2015-08-05 18:13   ` [rtc-linux] [PATCH v2 " Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 09/11] rtc: rp5c01: clean up rp5c01_nvram_read()/rp5c01_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 10/11] rtc: stk17ta8: clean up stk17ta8_nvram_read()/stk17ta8_nvram_write() Vladimir Zapolskiy
2015-07-26 21:48 ` [rtc-linux] [PATCH 11/11] rtc: tx4939: clean up tx4939_rtc_nvram_read()/tx4939_rtc_nvram_write() Vladimir Zapolskiy
2015-08-14 22:21 ` Alexandre Belloni [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=20150814222137.GO22269@piout.net \
    --to=alexandre.belloni@free-electrons.com \
    --cc=a.zummo@towertech.it \
    --cc=gregkh@linuxfoundation.org \
    --cc=rtc-linux@googlegroups.com \
    --cc=vz@mleia.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