linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: rui_feng@realsil.com.cn
Cc: arnd@arndb.de, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, ricky_wu@realtek.com,
	bristot@redhat.com, perry_yuan@dell.com
Subject: [GIT PULL] Immutable branch between MFD, Memstick, Misc and MMC due for the v4.16 merge window
Date: Wed, 29 Nov 2017 10:23:16 +0000	[thread overview]
Message-ID: <20171129102316.gjyeqtc4gova3auv@dell> (raw)
In-Reply-To: <1511946596-2936-1-git-send-email-rui_feng@realsil.com.cn>

Hi All,

Need to send this out twice due to a lack of a 0/X patch and different
addressees on each patch. :(

--------------------------------------------------------------------------------

The following changes since commit 4fbd8d194f06c8a3fd2af1ce560ddb31f7ec8323:

  Linux 4.15-rc1 (2017-11-26 16:01:47 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git ib-mfd-memstick-misc-mmc-v4.16

for you to fetch changes up to 5da4e04ae480aac5274dd020af3dfa21935028f7:

  misc: rtsx: Add support for RTS5260 (2017-11-29 10:17:26 +0000)

----------------------------------------------------------------
Immutable branch between MFD, Memstick, Misc and MMC due for the v4.16 merge window

----------------------------------------------------------------
Rui Feng (2):
      misc: rtsx: Move Realtek Card Reader Driver to misc
      misc: rtsx: Add support for RTS5260

 drivers/memstick/host/Kconfig               |   4 +-
 drivers/memstick/host/rtsx_pci_ms.c         |   2 +-
 drivers/memstick/host/rtsx_usb_ms.c         |   2 +-
 drivers/mfd/Kconfig                         |  21 -
 drivers/mfd/Makefile                        |   4 -
 drivers/misc/Kconfig                        |   5 +
 drivers/misc/Makefile                       |   1 +
 drivers/misc/cardreader/Kconfig             |  20 +
 drivers/misc/cardreader/Makefile            |   4 +
 drivers/{mfd => misc/cardreader}/rtl8411.c  |   2 +-
 drivers/{mfd => misc/cardreader}/rts5209.c  |   2 +-
 drivers/{mfd => misc/cardreader}/rts5227.c  |   2 +-
 drivers/{mfd => misc/cardreader}/rts5229.c  |   2 +-
 drivers/{mfd => misc/cardreader}/rts5249.c  |   3 +-
 drivers/misc/cardreader/rts5260.c           | 748 ++++++++++++++++++++++++++++
 drivers/misc/cardreader/rts5260.h           |  45 ++
 drivers/{mfd => misc/cardreader}/rtsx_pcr.c | 125 ++++-
 drivers/{mfd => misc/cardreader}/rtsx_pcr.h |  12 +-
 drivers/{mfd => misc/cardreader}/rtsx_usb.c |   2 +-
 drivers/mmc/host/Kconfig                    |   4 +-
 drivers/mmc/host/rtsx_pci_sdmmc.c           |   2 +-
 drivers/mmc/host/rtsx_usb_sdmmc.c           |   2 +-
 include/linux/{mfd => }/rtsx_common.h       |   0
 include/linux/{mfd => }/rtsx_pci.h          | 236 ++++++++-
 include/linux/{mfd => }/rtsx_usb.h          |   0
 25 files changed, 1202 insertions(+), 48 deletions(-)
 create mode 100644 drivers/misc/cardreader/Kconfig
 create mode 100644 drivers/misc/cardreader/Makefile
 rename drivers/{mfd => misc/cardreader}/rtl8411.c (99%)
 rename drivers/{mfd => misc/cardreader}/rts5209.c (99%)
 rename drivers/{mfd => misc/cardreader}/rts5227.c (99%)
 rename drivers/{mfd => misc/cardreader}/rts5229.c (99%)
 rename drivers/{mfd => misc/cardreader}/rts5249.c (99%)
 create mode 100644 drivers/misc/cardreader/rts5260.c
 create mode 100644 drivers/misc/cardreader/rts5260.h
 rename drivers/{mfd => misc/cardreader}/rtsx_pcr.c (92%)
 rename drivers/{mfd => misc/cardreader}/rtsx_pcr.h (89%)
 rename drivers/{mfd => misc/cardreader}/rtsx_usb.c (99%)
 rename include/linux/{mfd => }/rtsx_common.h (100%)
 rename include/linux/{mfd => }/rtsx_pci.h (83%)
 rename include/linux/{mfd => }/rtsx_usb.h (100%)

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

  parent reply	other threads:[~2017-11-29 10:23 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-29  9:09 [PATCH v8,2/2] misc: rtsx: Add support for RTS5260 rui_feng
2017-11-29 10:14 ` Lee Jones
2017-11-30  1:12   ` 答复: " 冯锐
2017-11-30  8:43     ` Lee Jones
2017-11-29 10:23 ` Lee Jones [this message]
2017-12-04  9:49   ` [GIT PULL v2] Immutable branch between MFD, Memstick, Misc and MMC due for the v4.16 merge window Lee Jones
  -- strict thread matches above, loose matches on Subject: below --
2017-11-29  9:08 [PATCH v8,1/2] misc: rtsx: Move Realtek Card Reader Driver to misc rui_feng
2017-11-29 10:22 ` [GIT PULL] Immutable branch between MFD, Memstick, Misc and MMC due for the v4.16 merge window Lee Jones

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=20171129102316.gjyeqtc4gova3auv@dell \
    --to=lee.jones@linaro.org \
    --cc=arnd@arndb.de \
    --cc=bristot@redhat.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=perry_yuan@dell.com \
    --cc=ricky_wu@realtek.com \
    --cc=rui_feng@realsil.com.cn \
    /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;
as well as URLs for NNTP newsgroup(s).