From patchwork Thu Jan 31 11:43:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adam Lee X-Patchwork-Id: 217165 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 924C82C008E for ; Thu, 31 Jan 2013 22:43:28 +1100 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U0sY2-0003b6-1E; Thu, 31 Jan 2013 11:43:18 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1U0sXy-0003ZQ-0x for kernel-team@lists.ubuntu.com; Thu, 31 Jan 2013 11:43:14 +0000 Received: from ipsec02.blockcn.net ([173.254.214.45] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1U0sXw-0003sK-TV; Thu, 31 Jan 2013 11:43:13 +0000 Date: Thu, 31 Jan 2013 19:43:08 +0800 From: Adam Lee To: Brad Figg Subject: [Quantal][Pull-Request v3] Add realtek pcie card reader driver to fix #1057089 Message-ID: <20130131114308.GA6536@adam-laptop> Mail-Followup-To: Brad Figg , Tim Gardner , YK , kernel-team@lists.ubuntu.com, Anthony Wong , Ming Lei References: <20130128070836.GD10628@adam-laptop> <5107D601.3000708@canonical.com> <20130130065115.GA23144@adam-laptop> <51095C13.8020004@canonical.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <51095C13.8020004@canonical.com> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: kernel-team@lists.ubuntu.com, Anthony Wong , YK X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com 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