All of lore.kernel.org
 help / color / mirror / Atom feed
* + s5pc110-sdhci-s3c-support-on-s5pc110.patch added to -mm tree
@ 2010-06-10 20:43 akpm
  2010-06-11  0:36 ` Ben Dooks
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2010-06-10 20:43 UTC (permalink / raw)
  To: mm-commits; +Cc: kmpark, kyungmin.park, linux-mmc


The patch titled
     s5pc110: SDHCI-s3c support on s5pc110
has been added to the -mm tree.  Its filename is
     s5pc110-sdhci-s3c-support-on-s5pc110.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: s5pc110: SDHCI-s3c support on s5pc110
From: Kyungmin Park <kmpark@infradead.org>

s5pc110 (aka s5pv210) uses the same SDHCI IP.

Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>

Cc: <linux-mmc@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/mmc/host/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/mmc/host/Kconfig~s5pc110-sdhci-s3c-support-on-s5pc110 drivers/mmc/host/Kconfig
--- a/drivers/mmc/host/Kconfig~s5pc110-sdhci-s3c-support-on-s5pc110
+++ a/drivers/mmc/host/Kconfig
@@ -123,7 +123,7 @@ config MMC_SDHCI_PLTFM
 
 config MMC_SDHCI_S3C
 	tristate "SDHCI support on Samsung S3C SoC"
-	depends on MMC_SDHCI && (PLAT_S3C24XX || PLAT_S3C64XX)
+	depends on MMC_SDHCI && PLAT_SAMSUNG
 	help
 	  This selects the Secure Digital Host Controller Interface (SDHCI)
 	  often referrered to as the HSMMC block in some of the Samsung S3C
_

Patches currently in -mm which might be from kmpark@infradead.org are

mmc-recognize-csd-structure.patch
mmc-recognize-csd-structure-fix.patch
s5pc110-sdhci-s3c-can-override-host-capabilities.patch
s5pc110-sdhci-s3c-support-on-s5pc110.patch
sdhci-add-no-hi-speed-bit-quirk-support.patch


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: + s5pc110-sdhci-s3c-support-on-s5pc110.patch added to -mm tree
  2010-06-10 20:43 + s5pc110-sdhci-s3c-support-on-s5pc110.patch added to -mm tree akpm
@ 2010-06-11  0:36 ` Ben Dooks
  0 siblings, 0 replies; 2+ messages in thread
From: Ben Dooks @ 2010-06-11  0:36 UTC (permalink / raw)
  To: akpm; +Cc: mm-commits, kmpark, kyungmin.park, linux-mmc


On Thu, Jun 10, 2010 at 01:43:17PM -0700, akpm@linux-foundation.org wrote:
> 
> The patch titled
>      s5pc110: SDHCI-s3c support on s5pc110
> has been added to the -mm tree.  Its filename is
>      s5pc110-sdhci-s3c-support-on-s5pc110.patch
> 
> Before you just go and hit "reply", please:
>    a) Consider who else should be cc'ed
>    b) Prefer to cc a suitable mailing list as well
>    c) Ideally: find the original patch on the mailing list and do a
>       reply-to-all to that, adding suitable additional cc's
> 
> *** Remember to use Documentation/SubmitChecklist when testing your code ***
> 
> See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
> out what to do about this
> 
> The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
> 
> ------------------------------------------------------
> Subject: s5pc110: SDHCI-s3c support on s5pc110
> From: Kyungmin Park <kmpark@infradead.org>
> 
> s5pc110 (aka s5pv210) uses the same SDHCI IP.
> 
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> 
> Cc: <linux-mmc@vger.kernel.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
> ---
> 
>  drivers/mmc/host/Kconfig |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff -puN drivers/mmc/host/Kconfig~s5pc110-sdhci-s3c-support-on-s5pc110 drivers/mmc/host/Kconfig
> --- a/drivers/mmc/host/Kconfig~s5pc110-sdhci-s3c-support-on-s5pc110
> +++ a/drivers/mmc/host/Kconfig
> @@ -123,7 +123,7 @@ config MMC_SDHCI_PLTFM
>  
>  config MMC_SDHCI_S3C
>  	tristate "SDHCI support on Samsung S3C SoC"
> -	depends on MMC_SDHCI && (PLAT_S3C24XX || PLAT_S3C64XX)
> +	depends on MMC_SDHCI && PLAT_SAMSUNG

I've no problem with drivers being made available across the
PLAT_SAMSUNG range when they are truly generic, however the SDHCI
is only almost generic.

I'm not sure whether to ask for this one to be held until we've had
some time to discuss what we do about these on the relevant mailing
lists or say ok, this is what we should do.

-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-06-11  0:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-10 20:43 + s5pc110-sdhci-s3c-support-on-s5pc110.patch added to -mm tree akpm
2010-06-11  0:36 ` Ben Dooks

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.