mbox

[Quantal,Pull-Request,v3] Add realtek pcie card reader driver to fix #1057089

Message ID 20130131114308.GA6536@adam-laptop
State New
Headers show

Pull-request

git://kernel.ubuntu.com/adamlee/ubuntu-quantal.git master-next-1057089

Message

Adam Lee Jan. 31, 2013, 11:43 a.m. UTC
Great thanks to Luis and Brad.

The following changes since commit 97899c019a9eb4be967e39898ece841e9f964d6e:

  Revert "fsnotify: introduce fsnotify_get_group()" (2013-01-24 10:18:50 +0000)

are available in the git repository at:

  git://kernel.ubuntu.com/adamlee/ubuntu-quantal.git master-next-1057089

for you to fetch changes up to 546b86e638b9295c74de6e6b9f809a8c088c1d05:

  UBUNTU: [Config] Enable RTSX_PCI modules (2013-01-31 19:08:38 +0800)

----------------------------------------------------------------
Adam Lee (1):
      UBUNTU: [Config] Enable RTSX_PCI modules

Wei WANG (9):
      drivers/mfd: Add realtek pcie card reader driver
      mfd: rtsx: Add output voltage switch hook
      mfd: rtsx: Fix oops when rtsx_pci_sdmmc is not probed
      mmc: Add realtek pcie sdmmc host driver
      mmc: rtsx: Remove a duplicate command in sd_rw_multi
      mmc: rtsx: Configure SD_CFG2 register in sd_rw_multi
      mmc: rtsx: Explicitely include slab.h in rtsx_pci_sdmmc.c
      mmc: rtsx: Call MFD hook to switch output voltage
      drivers/memstick: Add realtek pcie memstick host driver

 debian.master/config/config.common.ubuntu |    3 +
 drivers/memstick/host/Kconfig             |   10 +
 drivers/memstick/host/Makefile            |    1 +
 drivers/memstick/host/rtsx_pci_ms.c       |  641 ++++++++++++++
 drivers/mfd/Kconfig                       |    9 +
 drivers/mfd/Makefile                      |    3 +
 drivers/mfd/rtl8411.c                     |  267 ++++++
 drivers/mfd/rts5209.c                     |  243 ++++++
 drivers/mfd/rts5229.c                     |  225 +++++
 drivers/mfd/rtsx_pcr.c                    | 1261 +++++++++++++++++++++++++++
 drivers/mfd/rtsx_pcr.h                    |   35 +
 drivers/mmc/host/Kconfig                  |    7 +
 drivers/mmc/host/Makefile                 |    2 +
 drivers/mmc/host/rtsx_pci_sdmmc.c         | 1326 +++++++++++++++++++++++++++++
 include/linux/mfd/rtsx_common.h           |   51 ++
 include/linux/mfd/rtsx_pci.h              |  811 ++++++++++++++++++
 16 files changed, 4895 insertions(+)
 create mode 100644 drivers/memstick/host/rtsx_pci_ms.c
 create mode 100644 drivers/mfd/rtl8411.c
 create mode 100644 drivers/mfd/rts5209.c
 create mode 100644 drivers/mfd/rts5229.c
 create mode 100644 drivers/mfd/rtsx_pcr.c
 create mode 100644 drivers/mfd/rtsx_pcr.h
 create mode 100644 drivers/mmc/host/rtsx_pci_sdmmc.c
 create mode 100644 include/linux/mfd/rtsx_common.h
 create mode 100644 include/linux/mfd/rtsx_pci.h

Comments

Luis Henriques Jan. 31, 2013, 12:15 p.m. UTC | #1
On Thu, Jan 31, 2013 at 07:43:08PM +0800, Adam Lee wrote:
> Great thanks to Luis and Brad.

Thank you for reworking this patchset.
Haven't tested the code myself (only build-tested), but there's positive
feedback from bug.

Cheers,
--
Luis

> 
> The following changes since commit
> 97899c019a9eb4be967e39898ece841e9f964d6e:
> 
>   Revert "fsnotify: introduce fsnotify_get_group()" (2013-01-24 10:18:50 +0000)
> 
> are available in the git repository at:
> 
>   git://kernel.ubuntu.com/adamlee/ubuntu-quantal.git master-next-1057089
> 
> for you to fetch changes up to 546b86e638b9295c74de6e6b9f809a8c088c1d05:
> 
>   UBUNTU: [Config] Enable RTSX_PCI modules (2013-01-31 19:08:38 +0800)
> 
> ----------------------------------------------------------------
> Adam Lee (1):
>       UBUNTU: [Config] Enable RTSX_PCI modules
> 
> Wei WANG (9):
>       drivers/mfd: Add realtek pcie card reader driver
>       mfd: rtsx: Add output voltage switch hook
>       mfd: rtsx: Fix oops when rtsx_pci_sdmmc is not probed
>       mmc: Add realtek pcie sdmmc host driver
>       mmc: rtsx: Remove a duplicate command in sd_rw_multi
>       mmc: rtsx: Configure SD_CFG2 register in sd_rw_multi
>       mmc: rtsx: Explicitely include slab.h in rtsx_pci_sdmmc.c
>       mmc: rtsx: Call MFD hook to switch output voltage
>       drivers/memstick: Add realtek pcie memstick host driver
> 
>  debian.master/config/config.common.ubuntu |    3 +
>  drivers/memstick/host/Kconfig             |   10 +
>  drivers/memstick/host/Makefile            |    1 +
>  drivers/memstick/host/rtsx_pci_ms.c       |  641 ++++++++++++++
>  drivers/mfd/Kconfig                       |    9 +
>  drivers/mfd/Makefile                      |    3 +
>  drivers/mfd/rtl8411.c                     |  267 ++++++
>  drivers/mfd/rts5209.c                     |  243 ++++++
>  drivers/mfd/rts5229.c                     |  225 +++++
>  drivers/mfd/rtsx_pcr.c                    | 1261 +++++++++++++++++++++++++++
>  drivers/mfd/rtsx_pcr.h                    |   35 +
>  drivers/mmc/host/Kconfig                  |    7 +
>  drivers/mmc/host/Makefile                 |    2 +
>  drivers/mmc/host/rtsx_pci_sdmmc.c         | 1326 +++++++++++++++++++++++++++++
>  include/linux/mfd/rtsx_common.h           |   51 ++
>  include/linux/mfd/rtsx_pci.h              |  811 ++++++++++++++++++
>  16 files changed, 4895 insertions(+)
>  create mode 100644 drivers/memstick/host/rtsx_pci_ms.c
>  create mode 100644 drivers/mfd/rtl8411.c
>  create mode 100644 drivers/mfd/rts5209.c
>  create mode 100644 drivers/mfd/rts5229.c
>  create mode 100644 drivers/mfd/rtsx_pcr.c
>  create mode 100644 drivers/mfd/rtsx_pcr.h
>  create mode 100644 drivers/mmc/host/rtsx_pci_sdmmc.c
>  create mode 100644 include/linux/mfd/rtsx_common.h
>  create mode 100644 include/linux/mfd/rtsx_pci.h
> 
> -- 
> Regards,
> Adam Lee
> Hardware Enablement
> 
> -- 
> kernel-team mailing list
> kernel-team@lists.ubuntu.com
> https://lists.ubuntu.com/mailman/listinfo/kernel-team
Brad Figg Jan. 31, 2013, 5:19 p.m. UTC | #2
On 01/31/2013 03:43 AM, Adam Lee wrote:
> Great thanks to Luis and Brad.
> 
> The following changes since commit 97899c019a9eb4be967e39898ece841e9f964d6e:
> 
>   Revert "fsnotify: introduce fsnotify_get_group()" (2013-01-24 10:18:50 +0000)
> 
> are available in the git repository at:
> 
>   git://kernel.ubuntu.com/adamlee/ubuntu-quantal.git master-next-1057089
> 
> for you to fetch changes up to 546b86e638b9295c74de6e6b9f809a8c088c1d05:
> 
>   UBUNTU: [Config] Enable RTSX_PCI modules (2013-01-31 19:08:38 +0800)
> 
> ----------------------------------------------------------------
> Adam Lee (1):
>       UBUNTU: [Config] Enable RTSX_PCI modules
> 
> Wei WANG (9):
>       drivers/mfd: Add realtek pcie card reader driver
>       mfd: rtsx: Add output voltage switch hook
>       mfd: rtsx: Fix oops when rtsx_pci_sdmmc is not probed
>       mmc: Add realtek pcie sdmmc host driver
>       mmc: rtsx: Remove a duplicate command in sd_rw_multi
>       mmc: rtsx: Configure SD_CFG2 register in sd_rw_multi
>       mmc: rtsx: Explicitely include slab.h in rtsx_pci_sdmmc.c
>       mmc: rtsx: Call MFD hook to switch output voltage
>       drivers/memstick: Add realtek pcie memstick host driver
> 
>  debian.master/config/config.common.ubuntu |    3 +
>  drivers/memstick/host/Kconfig             |   10 +
>  drivers/memstick/host/Makefile            |    1 +
>  drivers/memstick/host/rtsx_pci_ms.c       |  641 ++++++++++++++
>  drivers/mfd/Kconfig                       |    9 +
>  drivers/mfd/Makefile                      |    3 +
>  drivers/mfd/rtl8411.c                     |  267 ++++++
>  drivers/mfd/rts5209.c                     |  243 ++++++
>  drivers/mfd/rts5229.c                     |  225 +++++
>  drivers/mfd/rtsx_pcr.c                    | 1261 +++++++++++++++++++++++++++
>  drivers/mfd/rtsx_pcr.h                    |   35 +
>  drivers/mmc/host/Kconfig                  |    7 +
>  drivers/mmc/host/Makefile                 |    2 +
>  drivers/mmc/host/rtsx_pci_sdmmc.c         | 1326 +++++++++++++++++++++++++++++
>  include/linux/mfd/rtsx_common.h           |   51 ++
>  include/linux/mfd/rtsx_pci.h              |  811 ++++++++++++++++++
>  16 files changed, 4895 insertions(+)
>  create mode 100644 drivers/memstick/host/rtsx_pci_ms.c
>  create mode 100644 drivers/mfd/rtl8411.c
>  create mode 100644 drivers/mfd/rts5209.c
>  create mode 100644 drivers/mfd/rts5229.c
>  create mode 100644 drivers/mfd/rtsx_pcr.c
>  create mode 100644 drivers/mfd/rtsx_pcr.h
>  create mode 100644 drivers/mmc/host/rtsx_pci_sdmmc.c
>  create mode 100644 include/linux/mfd/rtsx_common.h
>  create mode 100644 include/linux/mfd/rtsx_pci.h
> 

Adam,

Thanks for the extra effort.
Tim Gardner Feb. 5, 2013, 1:52 p.m. UTC | #3