From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org
Subject: [rtc-linux] [GIT PULL] RTC for 4.5
Date: Mon, 18 Jan 2016 18:09:13 +0100 [thread overview]
Message-ID: <20160118170913.GA18375@piout.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 5025 bytes --]
Hi Linus,
Here is the pull-request for the RTC susbsystem for 4.5. It depends on a
few patches that you already pulled through the MFD tree.
The following changes since commit c60faa3afad0e926e63a39894489b64e9a8165df:
Merge tag 'ib-mfd-regulator-rtc-v4.5' into rtc-next (2016-01-11 20:19:40 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git tags/rtc-4.5
for you to fetch changes up to 079062b28fb4c58e30d024fdf974e00de53158fd:
rtc: cmos: prevent kernel warning on IRQ flags mismatch (2016-01-11 20:38:50 +0100)
----------------------------------------------------------------
RTC for 4.5
Core:
- fix module reference count in rtc-proc
- Replace simple_strtoul by kstrtoul
New driver:
- Epson RX8010SJ
Subsystem wide cleanups:
- use %ph for short hex dumps
- constify *_chip_ops structures
Drivers:
- abx80x: Microcrystal rv1805 support, alarm support
- cmos: prevent kernel warning on IRQ flags mismatch
- s5m: various cleanups
- rv8803: rx8900 compatibility, small error path fix
- sunxi: various cleanups
- lpc32xx: remove irq > NR_IRQS check from probe()
- imxdi: fix spelling mistake in warning message
- ds1685: don't try to micromanage sysfs output size
- da9063: avoid writing undefined data to rtc
- gemini: Remove unnecessary platform_set_drvdata()
- efi: add efi_procfs in efi_rtc_ops
- pcf8523: refuse to write dates later than 2099
----------------------------------------------------------------
Akshay Bhat (1):
rtc: Add Epson RX8010SJ RTC driver
Alexandre Belloni (2):
rtc: abx80x: Add Microcrystal rv1805 support
rtc: abx80x: add alarm support
Andrzej Hajda (1):
rtc: rv8803: fix handling return value of i2c_smbus_read_byte_data
Andy Shevchenko (1):
rtc: cmos: prevent kernel warning on IRQ flags mismatch
Colin Ian King (1):
rtc: imxdi: fix spelling mistake in warning message
Enrico Scholz (1):
rtc: da9063: avoid writing undefined data to rtc
Geliang Tang (2):
rtc: fix module reference count in rtc-proc
rtc: efi: add efi_procfs in efi_rtc_ops
Gregory CLEMENT (1):
rtc: rv8803: Extend compatibility with the rx8900
Julia Lawall (2):
rtc: v3020: constify v3020_chip_ops structures
rtc: rtc-ds2404: constify ds2404_chip_ops structures
Krzysztof Kozlowski (3):
rtc: s5m: Cleanup by removing useless 'rtc' prefix from fields
rtc: s5m: Add separate field for storing auto-cleared mask in register config
rtc: s5m: Make register configuration per S2MPS device to remove exceptions
LABBE Corentin (4):
rtc: sunxi: fix signedness issues
rtc: sunxi: constify the data_year_param structure
rtc: sunxi: use of_device_get_match_data
rtc: Replace simple_strtoul by kstrtoul
Nizam Haider (1):
rtc: gemini: Remove unnecessary platform_set_drvdata()
Rasmus Villemoes (2):
rtc: use %ph for short hex dumps
rtc: ds1685: don't try to micromanage sysfs output size
Uwe Kleine-König (1):
rtc: pcf8523: refuse to write dates later than 2099
Vladimir Zapolskiy (1):
rtc: lpc32xx: remove irq > NR_IRQS check from probe()
drivers/rtc/Kconfig | 10 +
drivers/rtc/Makefile | 1 +
drivers/rtc/rtc-abx80x.c | 146 ++++++++++-
drivers/rtc/rtc-cmos.c | 2 +-
drivers/rtc/rtc-da9063.c | 23 +-
drivers/rtc/rtc-ds1305.c | 8 +-
drivers/rtc/rtc-ds1307.c | 17 +-
drivers/rtc/rtc-ds1685.c | 22 +-
drivers/rtc/rtc-ds2404.c | 4 +-
drivers/rtc/rtc-efi.c | 66 ++++-
drivers/rtc/rtc-gemini.c | 1 -
drivers/rtc/rtc-imxdi.c | 2 +-
drivers/rtc/rtc-lpc32xx.c | 2 +-
drivers/rtc/rtc-pcf8523.c | 11 +
drivers/rtc/rtc-proc.c | 8 +-
drivers/rtc/rtc-rv8803.c | 3 +-
drivers/rtc/rtc-rx8010.c | 523 ++++++++++++++++++++++++++++++++++++++++
drivers/rtc/rtc-s5m.c | 138 +++++++----
drivers/rtc/rtc-sunxi.c | 18 +-
drivers/rtc/rtc-sysfs.c | 11 +-
drivers/rtc/rtc-v3020.c | 6 +-
include/linux/mfd/samsung/rtc.h | 2 +
22 files changed, 894 insertions(+), 130 deletions(-)
create mode 100644 drivers/rtc/rtc-rx8010.c
--
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.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: Alexandre Belloni <alexandre.belloni@free-electrons.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: rtc-linux@googlegroups.com, linux-kernel@vger.kernel.org
Subject: [GIT PULL] RTC for 4.5
Date: Mon, 18 Jan 2016 18:09:13 +0100 [thread overview]
Message-ID: <20160118170913.GA18375@piout.net> (raw)
[-- Attachment #1: Type: text/plain, Size: 4494 bytes --]
Hi Linus,
Here is the pull-request for the RTC susbsystem for 4.5. It depends on a
few patches that you already pulled through the MFD tree.
The following changes since commit c60faa3afad0e926e63a39894489b64e9a8165df:
Merge tag 'ib-mfd-regulator-rtc-v4.5' into rtc-next (2016-01-11 20:19:40 +0100)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git tags/rtc-4.5
for you to fetch changes up to 079062b28fb4c58e30d024fdf974e00de53158fd:
rtc: cmos: prevent kernel warning on IRQ flags mismatch (2016-01-11 20:38:50 +0100)
----------------------------------------------------------------
RTC for 4.5
Core:
- fix module reference count in rtc-proc
- Replace simple_strtoul by kstrtoul
New driver:
- Epson RX8010SJ
Subsystem wide cleanups:
- use %ph for short hex dumps
- constify *_chip_ops structures
Drivers:
- abx80x: Microcrystal rv1805 support, alarm support
- cmos: prevent kernel warning on IRQ flags mismatch
- s5m: various cleanups
- rv8803: rx8900 compatibility, small error path fix
- sunxi: various cleanups
- lpc32xx: remove irq > NR_IRQS check from probe()
- imxdi: fix spelling mistake in warning message
- ds1685: don't try to micromanage sysfs output size
- da9063: avoid writing undefined data to rtc
- gemini: Remove unnecessary platform_set_drvdata()
- efi: add efi_procfs in efi_rtc_ops
- pcf8523: refuse to write dates later than 2099
----------------------------------------------------------------
Akshay Bhat (1):
rtc: Add Epson RX8010SJ RTC driver
Alexandre Belloni (2):
rtc: abx80x: Add Microcrystal rv1805 support
rtc: abx80x: add alarm support
Andrzej Hajda (1):
rtc: rv8803: fix handling return value of i2c_smbus_read_byte_data
Andy Shevchenko (1):
rtc: cmos: prevent kernel warning on IRQ flags mismatch
Colin Ian King (1):
rtc: imxdi: fix spelling mistake in warning message
Enrico Scholz (1):
rtc: da9063: avoid writing undefined data to rtc
Geliang Tang (2):
rtc: fix module reference count in rtc-proc
rtc: efi: add efi_procfs in efi_rtc_ops
Gregory CLEMENT (1):
rtc: rv8803: Extend compatibility with the rx8900
Julia Lawall (2):
rtc: v3020: constify v3020_chip_ops structures
rtc: rtc-ds2404: constify ds2404_chip_ops structures
Krzysztof Kozlowski (3):
rtc: s5m: Cleanup by removing useless 'rtc' prefix from fields
rtc: s5m: Add separate field for storing auto-cleared mask in register config
rtc: s5m: Make register configuration per S2MPS device to remove exceptions
LABBE Corentin (4):
rtc: sunxi: fix signedness issues
rtc: sunxi: constify the data_year_param structure
rtc: sunxi: use of_device_get_match_data
rtc: Replace simple_strtoul by kstrtoul
Nizam Haider (1):
rtc: gemini: Remove unnecessary platform_set_drvdata()
Rasmus Villemoes (2):
rtc: use %ph for short hex dumps
rtc: ds1685: don't try to micromanage sysfs output size
Uwe Kleine-König (1):
rtc: pcf8523: refuse to write dates later than 2099
Vladimir Zapolskiy (1):
rtc: lpc32xx: remove irq > NR_IRQS check from probe()
drivers/rtc/Kconfig | 10 +
drivers/rtc/Makefile | 1 +
drivers/rtc/rtc-abx80x.c | 146 ++++++++++-
drivers/rtc/rtc-cmos.c | 2 +-
drivers/rtc/rtc-da9063.c | 23 +-
drivers/rtc/rtc-ds1305.c | 8 +-
drivers/rtc/rtc-ds1307.c | 17 +-
drivers/rtc/rtc-ds1685.c | 22 +-
drivers/rtc/rtc-ds2404.c | 4 +-
drivers/rtc/rtc-efi.c | 66 ++++-
drivers/rtc/rtc-gemini.c | 1 -
drivers/rtc/rtc-imxdi.c | 2 +-
drivers/rtc/rtc-lpc32xx.c | 2 +-
drivers/rtc/rtc-pcf8523.c | 11 +
drivers/rtc/rtc-proc.c | 8 +-
drivers/rtc/rtc-rv8803.c | 3 +-
drivers/rtc/rtc-rx8010.c | 523 ++++++++++++++++++++++++++++++++++++++++
drivers/rtc/rtc-s5m.c | 138 +++++++----
drivers/rtc/rtc-sunxi.c | 18 +-
drivers/rtc/rtc-sysfs.c | 11 +-
drivers/rtc/rtc-v3020.c | 6 +-
include/linux/mfd/samsung/rtc.h | 2 +
22 files changed, 894 insertions(+), 130 deletions(-)
create mode 100644 drivers/rtc/rtc-rx8010.c
--
Alexandre Belloni, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next reply other threads:[~2016-01-18 17:09 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-18 17:09 Alexandre Belloni [this message]
2016-01-18 17:09 ` [GIT PULL] RTC for 4.5 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=20160118170913.GA18375@piout.net \
--to=alexandre.belloni@free-electrons.com \
--cc=linux-kernel@vger.kernel.org \
--cc=rtc-linux@googlegroups.com \
--cc=torvalds@linux-foundation.org \
/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.