LKML Archive on lore.kernel.org help / color / mirror / Atom feed
* [Patch] mmc: add ricoh 0xe823 pci id @ 2011-02-11 22:25 Manoj Iyer 2011-02-11 22:25 ` [PATCH] mmc: add ricoh e823 " Manoj Iyer 0 siblings, 1 reply; 5+ messages in thread From: Manoj Iyer @ 2011-02-11 22:25 UTC (permalink / raw) To: linux-kernel; +Cc: Chris Ball, linux-mmc This patch enables RICOH MMC card reader with pci id 0xe823. ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] mmc: add ricoh e823 pci id 2011-02-11 22:25 [Patch] mmc: add ricoh 0xe823 pci id Manoj Iyer @ 2011-02-11 22:25 ` Manoj Iyer 2011-02-11 22:42 ` Chris Ball 0 siblings, 1 reply; 5+ messages in thread From: Manoj Iyer @ 2011-02-11 22:25 UTC (permalink / raw) To: linux-kernel; +Cc: Chris Ball, linux-mmc Signed-off-by: Manoj Iyer <manoj.iyer@canonical.com> --- drivers/mmc/host/sdhci-pci.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c index 0dc905b..f7e622c 100644 --- a/drivers/mmc/host/sdhci-pci.c +++ b/drivers/mmc/host/sdhci-pci.c @@ -547,6 +547,14 @@ static const struct pci_device_id pci_ids[] __devinitdata = { }, { + .vendor = PCI_VENDOR_ID_RICOH, + .device = 0xe823, + .subvendor = PCI_ANY_ID, + .subdevice = PCI_ANY_ID, + .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, + }, + + { .vendor = PCI_VENDOR_ID_ENE, .device = PCI_DEVICE_ID_ENE_CB712_SD, .subvendor = PCI_ANY_ID, -- 1.7.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mmc: add ricoh e823 pci id 2011-02-11 22:25 ` [PATCH] mmc: add ricoh e823 " Manoj Iyer @ 2011-02-11 22:42 ` Chris Ball 2011-02-12 17:29 ` Arnd Bergmann 0 siblings, 1 reply; 5+ messages in thread From: Chris Ball @ 2011-02-11 22:42 UTC (permalink / raw) To: Manoj Iyer; +Cc: linux-kernel, linux-mmc Hi Manoj, On Fri, Feb 11, 2011 at 04:25:31PM -0600, Manoj Iyer wrote: > Signed-off-by: Manoj Iyer <manoj.iyer@canonical.com> > --- > drivers/mmc/host/sdhci-pci.c | 8 ++++++++ > 1 files changed, 8 insertions(+), 0 deletions(-) > > diff --git a/drivers/mmc/host/sdhci-pci.c b/drivers/mmc/host/sdhci-pci.c > index 0dc905b..f7e622c 100644 > --- a/drivers/mmc/host/sdhci-pci.c > +++ b/drivers/mmc/host/sdhci-pci.c > @@ -547,6 +547,14 @@ static const struct pci_device_id pci_ids[] __devinitdata = { > }, > > { > + .vendor = PCI_VENDOR_ID_RICOH, > + .device = 0xe823, > + .subvendor = PCI_ANY_ID, > + .subdevice = PCI_ANY_ID, > + .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, > + }, > + > + { > .vendor = PCI_VENDOR_ID_ENE, > .device = PCI_DEVICE_ID_ENE_CB712_SD, > .subvendor = PCI_ANY_ID, Thanks, pushed to mmc-next for .39. -- Chris Ball <cjb@laptop.org> <http://printf.net/> One Laptop Per Child ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mmc: add ricoh e823 pci id 2011-02-11 22:42 ` Chris Ball @ 2011-02-12 17:29 ` Arnd Bergmann 2011-02-12 17:34 ` Chris Ball 0 siblings, 1 reply; 5+ messages in thread From: Arnd Bergmann @ 2011-02-12 17:29 UTC (permalink / raw) To: Chris Ball; +Cc: Manoj Iyer, linux-kernel, linux-mmc On Friday 11 February 2011 23:42:34 Chris Ball wrote: > > > > { > > + .vendor = PCI_VENDOR_ID_RICOH, > > + .device = 0xe823, > > + .subvendor = PCI_ANY_ID, > > + .subdevice = PCI_ANY_ID, > > + .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, > > + }, > > + > > + { > > .vendor = PCI_VENDOR_ID_ENE, > > .device = PCI_DEVICE_ID_ENE_CB712_SD, > > .subvendor = PCI_ANY_ID, > > Thanks, pushed to mmc-next for .39. Wouldn't this be a candidate for -stable as well? Arnd ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] mmc: add ricoh e823 pci id 2011-02-12 17:29 ` Arnd Bergmann @ 2011-02-12 17:34 ` Chris Ball 0 siblings, 0 replies; 5+ messages in thread From: Chris Ball @ 2011-02-12 17:34 UTC (permalink / raw) To: Arnd Bergmann; +Cc: Manoj Iyer, linux-kernel, linux-mmc On Sat, Feb 12, 2011 at 06:29:26PM +0100, Arnd Bergmann wrote: > On Friday 11 February 2011 23:42:34 Chris Ball wrote: > > > > > > { > > > + .vendor = PCI_VENDOR_ID_RICOH, > > > + .device = 0xe823, > > > + .subvendor = PCI_ANY_ID, > > > + .subdevice = PCI_ANY_ID, > > > + .driver_data = (kernel_ulong_t)&sdhci_ricoh_mmc, > > > + }, > > > + > > > + { > > > .vendor = PCI_VENDOR_ID_ENE, > > > .device = PCI_DEVICE_ID_ENE_CB712_SD, > > > .subvendor = PCI_ANY_ID, > > > > Thanks, pushed to mmc-next for .39. > > Wouldn't this be a candidate for -stable as well? Yes, makes sense, will add a stable tag. Thanks, -- Chris Ball <cjb@laptop.org> <http://printf.net/> One Laptop Per Child ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-02-12 17:34 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2011-02-11 22:25 [Patch] mmc: add ricoh 0xe823 pci id Manoj Iyer 2011-02-11 22:25 ` [PATCH] mmc: add ricoh e823 " Manoj Iyer 2011-02-11 22:42 ` Chris Ball 2011-02-12 17:29 ` Arnd Bergmann 2011-02-12 17:34 ` Chris Ball
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).