All of lore.kernel.org
 help / color / mirror / Atom feed
From: Emil Bartczak <emilbart@gmail.com>
To: a.zummo@towertech.it
Cc: alexandre.belloni@free-electrons.com, rtc-linux@googlegroups.com,
	linux-kernel@vger.kernel.org, Emil Bartczak <emilbart@gmail.com>
Subject: [rtc-linux] [PATCH v2 0/6] Provides bug fixes for rtc-mcp795.c
Date: Thu,  8 Dec 2016 00:27:36 +0100	[thread overview]
Message-ID: <cover.1481151278.git.emilbart@gmail.com> (raw)

This patchset provides 4 bug fixes (patch 1, 2, 3, 4), one 
improvement (patch 5) and whitespace, indention errors fixes 
(patch 6) in the file driver/rtc/rtc-mcp795.c.
Please review the changes and consider to apply them to the 
main kernel tree.

Changes from v1:
- Introduced SoB to all patches.
- Patch which switches to bcd2bin/bin2bcd became as first now, 
  it also solved the shift problem presented in the previous patch 1.
- Added restoring EXTOSC bit to its previous value.
- All whitespace and indention fixes moved to the new patch 6.
- Added new patch which replaces all bitmask values with the 
  BIT(x) macro.

Emil Bartczak (6):
  rtc: mcp795: use bcd2bin/bin2bcd.
  rtc: mcp795: fix bitmask value for leap year (LP).
  rtc: mcp795: fix time range difference between linux and RTC chip.
  rtc: mcp795: fix month write resetting date to 1.
  rtc: mcp795: Prefer using the BIT() macro.
  rtc: mcp795: Fix whitespace and indentation.

 drivers/rtc/rtc-mcp795.c | 122 ++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 100 insertions(+), 22 deletions(-)

-- 
2.7.4

-- 
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.

WARNING: multiple messages have this Message-ID (diff)
From: Emil Bartczak <emilbart@gmail.com>
To: a.zummo@towertech.it
Cc: alexandre.belloni@free-electrons.com, rtc-linux@googlegroups.com,
	linux-kernel@vger.kernel.org, Emil Bartczak <emilbart@gmail.com>
Subject: [PATCH v2 0/6] Provides bug fixes for rtc-mcp795.c
Date: Thu,  8 Dec 2016 00:27:36 +0100	[thread overview]
Message-ID: <cover.1481151278.git.emilbart@gmail.com> (raw)

This patchset provides 4 bug fixes (patch 1, 2, 3, 4), one 
improvement (patch 5) and whitespace, indention errors fixes 
(patch 6) in the file driver/rtc/rtc-mcp795.c.
Please review the changes and consider to apply them to the 
main kernel tree.

Changes from v1:
- Introduced SoB to all patches.
- Patch which switches to bcd2bin/bin2bcd became as first now, 
  it also solved the shift problem presented in the previous patch 1.
- Added restoring EXTOSC bit to its previous value.
- All whitespace and indention fixes moved to the new patch 6.
- Added new patch which replaces all bitmask values with the 
  BIT(x) macro.

Emil Bartczak (6):
  rtc: mcp795: use bcd2bin/bin2bcd.
  rtc: mcp795: fix bitmask value for leap year (LP).
  rtc: mcp795: fix time range difference between linux and RTC chip.
  rtc: mcp795: fix month write resetting date to 1.
  rtc: mcp795: Prefer using the BIT() macro.
  rtc: mcp795: Fix whitespace and indentation.

 drivers/rtc/rtc-mcp795.c | 122 ++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 100 insertions(+), 22 deletions(-)

-- 
2.7.4

             reply	other threads:[~2016-12-07 23:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-07 23:27 Emil Bartczak [this message]
2016-12-07 23:27 ` [PATCH v2 0/6] Provides bug fixes for rtc-mcp795.c Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 1/6] rtc: mcp795: use bcd2bin/bin2bcd Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 2/6] rtc: mcp795: fix bitmask value for leap year (LP) Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 3/6] rtc: mcp795: fix time range difference between linux and RTC chip Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 4/6] rtc: mcp795: fix month write resetting date to 1 Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 5/6] rtc: mcp795: Prefer using the BIT() macro Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-07 23:27 ` [rtc-linux] [PATCH v2 6/6] rtc: mcp795: Fix whitespace and indentation Emil Bartczak
2016-12-07 23:27   ` Emil Bartczak
2016-12-08  0:34 ` [rtc-linux] Re: [PATCH v2 0/6] Provides bug fixes for rtc-mcp795.c Alexandre Belloni
2016-12-08  0:34   ` Alexandre Belloni

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=cover.1481151278.git.emilbart@gmail.com \
    --to=emilbart@gmail.com \
    --cc=a.zummo@towertech.it \
    --cc=alexandre.belloni@free-electrons.com \
    --cc=linux-kernel@vger.kernel.org \
    --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 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.