[PATCH] regulator: add missing defintion regulator_is_supported_voltage

2012-06-30 Thread philipspatches
From: Philip Rakity This definition is missing when CONFIG_REGULATOR is not defined. This causes compiler errors when compiling sdhci.c. This can be worked around by adding #ifdef CONFIG_REGULATOR .. #endif but since other definitions are there we have defined the missing definition Signed-off-

Re: My outstanding MMC / SDHI/TMIO / MMCIF patches for 3.6

2012-06-30 Thread Chris Ball
Hi, On Sat, Jun 30 2012, Guennadi Liakhovetski wrote: >> Could we get a file in Documentation/devicetree/bindings/mmc/ for the >> new sh_mmcif DT bindings you've added, please? It can come as a new >> patch on top of these. I know it'll be very short right now; you can >> at least show an exampl

[PATCH] mmc: Convert s3cmci driver to gpiolib API

2012-06-30 Thread Sylwester Nawrocki
The s3c2410_gpio* calls are obsolete and have been scheduled for removal since several kernel releases. Remove them and use common gpiolib API. This patch is a prerequisite for removal of the S3C24XX SoC specific arch/arm/plat-samsung/include/gpio-fns.h header. Tested on Micro2440-SDK. Cc: Ben D

Re: My outstanding MMC / SDHI/TMIO / MMCIF patches for 3.6

2012-06-30 Thread Guennadi Liakhovetski
On Fri, 29 Jun 2012, Chris Ball wrote: > Hi Guennadi, > > On Fri, Jun 29 2012, Guennadi Liakhovetski wrote: > > Ah, ok, right, sorry, I thought, it would be a part of the "git > > request-pull" output. > > It is for newer versions of git, FWIW. > > > So, the top commit has hash > > > > 7c4cf5b

[PATCH v3 3/3] mmc: card: Add eMMC4.5 write packed commands unit-tests

2012-06-30 Thread Maya Erez
Expose the following packed commands tests: - Test the write packed commands list preparation - Simulate a returned error code - Send an invalid packed command to the card Signed-off-by: Lee Susman Signed-off-by: Maya Erez diff --git a/drivers/mmc/card/Kconfig b/drivers/mmc/card/Kconfig index 3

[PATCH v3 2/3] block: Add test-iosched scheduler

2012-06-30 Thread Maya Erez
The test scheduler allows testing a block device by dispatching specific requests according to the test case and declare PASS/FAIL according to the requests completion error code Signed-off-by: Maya Erez diff --git a/Documentation/block/test-iosched.txt b/Documentation/block/test-iosched.txt ne

[PATCH v3 1/3] mmc: block: Add MMC write packing statistics

2012-06-30 Thread Maya Erez
The write packing statistics are used for the packed commands unit tests in order to determine test success or failure Signed-off-by: Maya Erez diff --git a/drivers/mmc/card/block.c b/drivers/mmc/card/block.c index c965f2b..79fc4c2 100644 --- a/drivers/mmc/card/block.c +++ b/drivers/mmc/card/blo

[PATCH v3 0/3] mmc: card: Add eMMC4.5 write packed commands unit-tests

2012-06-30 Thread Maya Erez
Expose the following packed commands tests: - Test the write packed commands list preparation - Simulate a returned error code - Send an invalid packed command to the card This patch is dependant in the following patches: [PATCH v8 1/3] mmc: core: Add packed command feature of eMMC4.5 [PATCH v