Re: [PATCH] mmc: move regulator handling to core

2009-12-14 Thread David Brownell
On Friday 04 December 2009, Daniel Mack wrote: > On Thu, Dec 03, 2009 at 10:12:36PM +0200, Adrian Hunter wrote: > > Daniel Mack wrote: > > >On Thu, Dec 03, 2009 at 04:27:39PM +0200, Adrian Hunter wrote: > > > >>What about arch/arm/mach-omap2/mmc-twl4030.c ? > > > > > >Argh, missed that one. And th

Re: [net-2.6 1/3] iwmc3200top: clean up fw_download

2009-12-14 Thread David Miller
Unless you've been living under a rock, you should know that the net-2.6 tree was closed for all non-bugfix changes as of more than a week ago. Therefore submitting cleanups for net-2.6 is not appropriate. Resend your patches when net-next-2.6 opens up, which should be shorly after Linus release

[patch 171/196] DaVinci: MMC: MMC/SD controller driver for DaVinci family

2009-12-14 Thread akpm
From: Vipin Bhandari Add support for MMC/SD controller driver for all DaVinci family SoC. This patch supports davinci family SoC's DM6446, DM355, DM365 and DA830/OMAPL137. The patch has been tested on DM355 EVM. The MMCSD controller specifications for DM355 can be found at http://focus.ti.com/

[patch 172/196] mmc: davinci: modify data types of EDMA related variables

2009-12-14 Thread akpm
From: Sudhakar Rajashekhara Currently DaVinci EDMA driver supports multiple EDMA channel controller instances. edma_alloc_channel() api returns a 32 bit value which has the channel controller number in MSB and the EDMA channel number in LSB. The variables which store the value returned by edma_

[patch 168/196] mxcmmc: fix error path in mxcmci_probe

2009-12-14 Thread akpm
From: Uwe Kleine-König After a failing allocation of mmc or a failed ioremap in mxcmci_probe host was used uninitialized. Signed-off-by: Uwe Kleine-König Acked-by: Sascha Hauer Cc: Pierre Ossman Cc: Martin Fuzzey Cc: Pierre Ossman Cc: Signed-off-by: Andrew Morton --- drivers/mmc/host/mx

[patch 174/196] mmci-omap: remove bogus check for host->iclk

2009-12-14 Thread akpm
From: Ladislav Michl Remove check for host->iclk being NULL from error path since we already know it is non-null and use return value from clk_get. Signed-off-by: Ladislav Michl Acked-by: Tony Lindgren Cc: Signed-off-by: Andrew Morton --- drivers/mmc/host/omap.c | 10 +- 1 file c

[patch 169/196] sdio: rework cis tuple parsing

2009-12-14 Thread akpm
From: Albert Herranz Rework the current CIS tuple parsing code, reusing the existing infrastructure and providing an easy way to add new CISTPL_FUNCE parsers by TPLFE_TYPE. Valid known CIS tuples are now silently queued for the SDIO function driver when not parsed/processed (-EILSEQ) by the SDIO

[patch 173/196] davinci: mmc: add cpufreq support

2009-12-14 Thread akpm
From: Chaithrika U S Add cpufreq support to MMC driver. The clock divider value has to be modified according to the controller input frequency. Signed-off-by: Chaithrika U S Cc: Linus Walleij Cc: Signed-off-by: Andrew Morton --- drivers/mmc/host/davinci_mmc.c | 100 +++

[patch 175/196] sdhci: add support for the SysKonnect CardBus2SDIO adapter

2009-12-14 Thread akpm
From: Nicolas Pitre This is still in use especially to develop SDIO device drivers on laptop machines which are lacking SDIO slots. This adapter supports SDIO cards only due to lack of 136-bit response capability. Signed-off-by: Nicolas Pitre Cc: Signed-off-by: Andrew Morton --- drivers/mm

[patch 170/196] drivers/mmc: Move dereference after NULL test

2009-12-14 Thread akpm
From: Julia Lawall If the NULL test on mrq is needed, then the derefernce should be after the NULL test. A simplified version of the semantic match that detects this problem is as follows (http://coccinelle.lip6.fr/): // @match exists@ expression x, E; identifier fld; @@ * x->fld ... when !

[patch 177/196] mmc: add module parameter to set whether cards are assumed removable

2009-12-14 Thread akpm
From: Ben Hutchings Some people run general-purpose distribution kernels on netbooks with a card that is physically non-removable or logically non-removable (e.g. used for /home) and cannot be cleanly unmounted during suspend. Add a module parameter to set whether cards are assumed removable or n

[patch 180/196] mmc: Blackfin SD Host Controller Driver

2009-12-14 Thread akpm
From: Cliff Cai Add SD host driver for Blackfin BF54x and BF51x. [a...@linux-foundation.org: fix layout, c99 warning] Signed-off-by: Cliff Cai Signed-off-by: Bryan Wu Signed-off-by: Mike Frysinger Cc: Signed-off-by: Andrew Morton --- drivers/mmc/host/Kconfig| 19 + drivers/mmc/host/

[patch 181/196] mmc: let tmio-mmc use dev_name() with request_irq()

2009-12-14 Thread akpm
From: Magnus Damm Improve the /proc/interrupts output so the irq number can be mapped to platform device on boards with multiple tmio_mmc instances. Signed-off-by: Magnus Damm Cc: Cc: Paul Mundt Signed-off-by: Andrew Morton --- drivers/mmc/host/tmio_mmc.c |2 +- 1 file changed, 1 inser

[patch 179/196] mmc: atmel-mci: new MCI2 module support in atmel-mci driver

2009-12-14 Thread akpm
From: Nicolas Ferre This new revision of the IP adds some improvements to the MCI already present in several Atmel SOC. Some new registers are added and a particular way of handling DMA interaction lead to a new sequence in function call which is backward compatible: On MCI2, we must set the DMA

[patch 178/196] atmel-mci: change use of dma slave interface

2009-12-14 Thread akpm
From: Nicolas Ferre Allow the use of another DMA controller driver in atmel-mci sd/mmc driver. This adds a generic dma_slave pointer to the mci platform structure where we can store DMA controller information. In atmel-mci we use information provided by this structure to initialize the driver (

[patch 176/196] s3cmci: convert missed s3c2410_gpio calls to gpiolib calls

2009-12-14 Thread akpm
From: Ben Dooks Convert two missed s3c2410 specific gpio calls to gpiolib calls. Signed-off-by: Ben Dooks Signed-off-by: Simtec Linux Team Cc: Signed-off-by: Andrew Morton --- drivers/mmc/host/s3cmci.c |8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff -puN drivers/mmc

[folded] blackfin-sd-host-controller-driver-fix-fix.patch removed from -mm tree

2009-12-14 Thread akpm
The patch titled blackfin-sd-host-controller-driver-fix-fix has been removed from the -mm tree. Its filename was blackfin-sd-host-controller-driver-fix-fix.patch This patch was dropped because it was folded into blackfin-sd-host-controller-driver.patch The current -mm tree may be fou

[folded] blackfin-sd-host-controller-driver-fix.patch removed from -mm tree

2009-12-14 Thread akpm
The patch titled blackfin-sd-host-controller-driver-fix has been removed from the -mm tree. Its filename was blackfin-sd-host-controller-driver-fix.patch This patch was dropped because it was folded into blackfin-sd-host-controller-driver.patch The current -mm tree may be found at ht

[folded] blackfin-sd-host-controller-driver-fix-fix-fix.patch removed from -mm tree

2009-12-14 Thread akpm
The patch titled blackfin-sd-host-controller-driver-fix-fix-fix has been removed from the -mm tree. Its filename was blackfin-sd-host-controller-driver-fix-fix-fix.patch This patch was dropped because it was folded into blackfin-sd-host-controller-driver.patch The current -mm tree ma

Re: [RFC PATCH v2 0/4] mmc: wii: sdhci controller support

2009-12-14 Thread Anton Vorontsov
On Mon, Dec 14, 2009 at 11:24:15PM +0100, Albert Herranz wrote: > This patch set adds support for the SDHCI controllers found in the > "Hollywood" chipset of the Nintendo Wii video game console. > > First, the existing sdhci-of driver is splitted into a core part and > a eSDHC-only part. Then the

[RFC PATCH v2 2/4] sdhci-of: rename main driver file prior to reorganization

2009-12-14 Thread Albert Herranz
This patch renames sdhci-of.c to sdhci-of-core.c before reorganizing the driver to support additional hardware. The driver is still built as sdhci-of despite the rename of the file. No functional change. Signed-off-by: Albert Herranz --- drivers/mmc/host/Makefile|4 +- drivers/mmc/h

[RFC PATCH v2 4/4] sdhci-of: add support for the wii sdhci controller

2009-12-14 Thread Albert Herranz
Add support for the Secure Digital Host Controller Interface found on the "Hollywood" chipset of the Nintendo Wii video game console. Signed-off-by: Albert Herranz --- drivers/mmc/host/Kconfig | 13 +++- drivers/mmc/host/Makefile|1 + drivers/mmc/host/sdhci-of-core.c |

[RFC PATCH v2 3/4] sdhci-of: reorganize driver to support additional hardware

2009-12-14 Thread Albert Herranz
This patch breaks down sdhci-of into a core portion and a eSDHC portion, clearing the path to easily support additional hardware using the same OF driver. Signed-off-by: Albert Herranz --- drivers/mmc/host/Kconfig | 26 ++- drivers/mmc/host/Makefile |1 + drivers/mmc/h

[RFC PATCH v2 1/4] sdhci: protect header file against multi inclusion

2009-12-14 Thread Albert Herranz
Signed-off-by: Albert Herranz --- drivers/mmc/host/sdhci.h |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/drivers/mmc/host/sdhci.h b/drivers/mmc/host/sdhci.h index ce5f1d7..842f46f 100644 --- a/drivers/mmc/host/sdhci.h +++ b/drivers/mmc/host/sdhci.h @@ -8,6 +8,8 @@

[RFC PATCH v2 0/4] mmc: wii: sdhci controller support

2009-12-14 Thread Albert Herranz
This patch set adds support for the SDHCI controllers found in the "Hollywood" chipset of the Nintendo Wii video game console. First, the existing sdhci-of driver is splitted into a core part and a eSDHC-only part. Then the Nintendo Wii SDHCI support is added as an add-on to that, re-using common

[merged] msm_sdccc-add-missing-include-fix-compilation.patch removed from -mm tree

2009-12-14 Thread akpm
The patch titled msm_sdcc.c: add missing include, fix compilation has been removed from the -mm tree. Its filename was msm_sdccc-add-missing-include-fix-compilation.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found a

Re: [RFC PATCH 1/2] sdhci-of: reorganize driver to support additional hardware

2009-12-14 Thread Albert Herranz
Anton Vorontsov wrote: > On Mon, Dec 14, 2009 at 08:33:25PM +0100, Albert Herranz wrote: >> This patch breaks down sdhci-of into a core portion and a eSDHC portion, >> clearing the path to easily support additional hardware using the same >> OF driver. >> >> Signed-off-by: Albert Herranz > > Look

[net-2.6 3/3] iwmc3200top: simplify imwct_tx

2009-12-14 Thread Tomas Winkler
1. remove address argument since we use same address IWMC_SDIO_DATA_ADDR in all cases 2. add __iwmct_tx - non locking tx function for already locked contexts Signed-off-by: Tomas Winkler --- drivers/misc/iwmc3200top/fw-download.c |4 +- drivers/misc/iwmc3200top/iwmc3200top.h |4 +--

[net-2.6 2/3] iwmc3200top: cleanup log messages

2009-12-14 Thread Tomas Winkler
1. add TRACE level 2. use TRACE where needed to reduce the noise 3 don't INFOEX from driver 4. add DUMP level for packets dumps 5. use correct context for the log messages Signed-off-by: Tomas Winkler --- drivers/misc/iwmc3200top/fw-download.c | 26 ++ drivers/misc/iwm

[net-2.6 1/3] iwmc3200top: clean up fw_download

2009-12-14 Thread Tomas Winkler
1. removed redundant NULL-pointers checks in iwmct_fw_load as release_firmware and kfree are NULL pointer friendly 2. remove redundant memset of the parser since the structure is fully initialized in iwmct_fw_parser_init function Signed-off-by: Tomas Winkler --- drivers/misc/iwmc3200top/fw-downl

Re: [RFC PATCH 1/2] sdhci-of: reorganize driver to support additional hardware

2009-12-14 Thread Anton Vorontsov
On Mon, Dec 14, 2009 at 08:33:25PM +0100, Albert Herranz wrote: > This patch breaks down sdhci-of into a core portion and a eSDHC portion, > clearing the path to easily support additional hardware using the same > OF driver. > > Signed-off-by: Albert Herranz Looks really good, thanks a lot for y

Re: [PATCH] atmel-mci.c: use resource size()

2009-12-14 Thread Haavard Skinnemoen
"H Hartley Sweeten" wrote: > Use resource_size(). > > Signed-off-by: H Hartley Sweeten > Cc: Haavard Skinnemoen Acked-by: Haavard Skinnemoen -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majord...@vger.kernel.org More majordomo info at ht

[RFC PATCH 2/2] sdhci-of: add support for the wii sdhci controller

2009-12-14 Thread Albert Herranz
Add support for the Secure Digital Host Controller Interface found on the "Hollywood" chipset of the Nintendo Wii video game console. Signed-off-by: Albert Herranz --- drivers/mmc/host/Kconfig | 13 +++- drivers/mmc/host/Makefile|1 + drivers/mmc/host/sdhci-of-core.c |

[RFC PATCH 1/2] sdhci-of: reorganize driver to support additional hardware

2009-12-14 Thread Albert Herranz
This patch breaks down sdhci-of into a core portion and a eSDHC portion, clearing the path to easily support additional hardware using the same OF driver. Signed-off-by: Albert Herranz --- drivers/mmc/host/Kconfig | 26 +++- drivers/mmc/host/Makefile |5 +- drivers/mmc/hos

[RFC PATCH 0/2] mmc: wii: sdhci controller support

2009-12-14 Thread Albert Herranz
This patch set adds support for the SDHCI controllers found in the "Hollywood" chipset of the Nintendo Wii video game console. First, the existing sdhci-of driver is splitted into a core part and a eSDHC-only part. Then the Nintendo Wii SDHCI support is added as an add-on to that, re-using common

[PATCH] au1xmmc.c: use resource_size()

2009-12-14 Thread H Hartley Sweeten
Use resource_size(). Signed-off-by: H Hartley Sweeten --- diff --git a/drivers/mmc/host/au1xmmc.c b/drivers/mmc/host/au1xmmc.c index d3f5561..2d2119b 100644 --- a/drivers/mmc/host/au1xmmc.c +++ b/drivers/mmc/host/au1xmmc.c @@ -963,7 +963,7 @@ static int __devinit au1xmmc_probe(struct platform_d

[PATCH] at91_mci.c: use resource_size()

2009-12-14 Thread H Hartley Sweeten
Use resource_size(). Signed-off-by: H Hartley Sweeten --- diff --git a/drivers/mmc/host/at91_mci.c b/drivers/mmc/host/at91_mci.c index 63924e0..05a3fb4 100644 --- a/drivers/mmc/host/at91_mci.c +++ b/drivers/mmc/host/at91_mci.c @@ -992,7 +992,7 @@ static int __init at91_mci_probe(struct platform

[PATCH] atmel-mci.c: use resource size()

2009-12-14 Thread H Hartley Sweeten
Use resource_size(). Signed-off-by: H Hartley Sweeten Cc: Haavard Skinnemoen --- diff --git a/drivers/mmc/host/atmel-mci.c b/drivers/mmc/host/atmel-mci.c index fc25586..150242f 100644 --- a/drivers/mmc/host/atmel-mci.c +++ b/drivers/mmc/host/atmel-mci.c @@ -1628,7 +1628,7 @@ static int __init

RE: [PATCH] mmc: move regulator handling to core

2009-12-14 Thread Madhusudhan
> -Original Message- > From: Daniel Mack [mailto:dan...@caiaq.de] > Sent: Friday, December 11, 2009 6:59 PM > To: Adrian Hunter > Cc: Matt Fleming; David Brownell; Eric Miao; Linus Walleij; Lavinen Jarkko > (Nokia-D/Helsinki); Mark Brown; linux-mmc@vger.kernel.org; linux- > ker...@vger.ke