Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1191855 > unrolled thread
| Started by | Michal Simek <michal.simek@xilinx.com> |
|---|---|
| First post | 2015-07-24 16:00 +0200 |
| Last post | 2015-07-28 00:00 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver Michal Simek <michal.simek@xilinx.com> - 2015-07-24 16:00 +0200
Re: [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver Scott Branden <sbranden@broadcom.com> - 2015-07-28 00:00 +0200
| From | Michal Simek <michal.simek@xilinx.com> |
|---|---|
| Date | 2015-07-24 16:00 +0200 |
| Subject | [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver |
| Message-ID | <pPLG2-7zK-15@gated-at.bofh.it> |
The patch "mmc: sdhci-of-arasan: Call OF parsing for MMC" (sha1: 16b23787fc709fe60c5d2bd05927b1a3da33d4e9) introduce new dependency on GPIOLIB which calls mmc_of_parse() -> mmc_gpiod_request_cd() (slot-gpio.c) which calls devm_gpiod_get_index() which returns -ENOSYS. Error log: sdhci-arasan ff160000.sdhci: parsing dt failed (4294967258) sdhci-arasan: probe of ff160000.sdhci failed with error -38 Signed-off-by: Michal Simek <michal.simek@xilinx.com> --- This problem is probably in all others drivers. This is one way how this can be solved. Maybe better way is to block return value for cd and wp. --- drivers/mmc/host/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index fd9a58e216a5..4b5854759cfc 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -120,6 +120,7 @@ config MMC_SDHCI_PLTFM config MMC_SDHCI_OF_ARASAN tristate "SDHCI OF support for the Arasan SDHCI controllers" depends on MMC_SDHCI_PLTFM + depends on GPIOLIB depends on OF help This selects the Arasan Secure Digital Host Controller Interface -- 2.3.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Scott Branden <sbranden@broadcom.com> |
|---|---|
| Date | 2015-07-28 00:00 +0200 |
| Subject | Re: [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver |
| Message-ID | <pQYBd-6bA-19@gated-at.bofh.it> |
| In reply to | #1191855 |
Hi Michal, comment in line On 15-07-24 06:53 AM, Michal Simek wrote: > The patch "mmc: sdhci-of-arasan: Call OF parsing for MMC" > (sha1: 16b23787fc709fe60c5d2bd05927b1a3da33d4e9) introduce new > dependency on GPIOLIB which calls mmc_of_parse() -> > mmc_gpiod_request_cd() (slot-gpio.c) which calls devm_gpiod_get_index() > which returns -ENOSYS. > > Error log: > sdhci-arasan ff160000.sdhci: parsing dt failed (4294967258) > sdhci-arasan: probe of ff160000.sdhci failed with error -38 > > Signed-off-by: Michal Simek <michal.simek@xilinx.com> > --- > > This problem is probably in all others drivers. > This is one way how this can be solved. > Maybe better way is to block return value for cd and wp. It appears there is gpio code in sdhci.c as well. This uses slot-gpio. Perhaps a depends on needs to be added to MMC_SDHCI instead? > > --- > drivers/mmc/host/Kconfig | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig > index fd9a58e216a5..4b5854759cfc 100644 > --- a/drivers/mmc/host/Kconfig > +++ b/drivers/mmc/host/Kconfig > @@ -120,6 +120,7 @@ config MMC_SDHCI_PLTFM > config MMC_SDHCI_OF_ARASAN > tristate "SDHCI OF support for the Arasan SDHCI controllers" > depends on MMC_SDHCI_PLTFM > + depends on GPIOLIB > depends on OF > help > This selects the Arasan Secure Digital Host Controller Interface > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web