[PATCH] mmc: sdhci: Remove redundant ADMA page boundary warnings

2014-12-22 Thread Andrew Gabbasov
the page boundary. So, the bounce buffer can't cross the page boundary too. That's why the warnings are never hit, and can be safely removed. Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/host/sdhci.c | 4 1 file changed, 4 deletions(-) diff --git a/drivers/mmc/host

RE: [PATCH 0/5] mmc: Miscellaneous fixes for SDHCI and MMC core

2014-10-13 Thread Andrew Gabbasov
Hi, Any comments on this? -Original Message- From: Andrew Gabbasov andrew_gabba...@mentor.com Sent: Wednesday, October 01, 2014 4:14 PM To: linux-mmc@vger.kernel.org Subject: [PATCH 0/5] mmc: Miscellaneous fixes for SDHCI and MMC core Andrew Gabbasov (5): mmc: sdhci: Balance

RE: [PATCH] mmc: sdhci-esdhc-imx: don't exit in case of no pinctrl states

2014-10-13 Thread Andrew Gabbasov
Hi, Any comments on this? -Original Message- From: Andrew Gabbasov [mailto:andrew_gabba...@mentor.com] Sent: Wednesday, October 01, 2014 1:26 PM To: linux-mmc@vger.kernel.org Subject: [PATCH] mmc: sdhci-esdhc-imx: don't exit in case of no pinctrl states From: Dirk Behme dirk.be

[PATCH] mmc: sdhci-esdhc-imx: don't exit in case of no pinctrl states

2014-10-01 Thread Andrew Gabbasov
, but go on in case if there are no pinctrl states in the device tree. Signed-off-by: Dirk Behme dirk.be...@de.bosch.com Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/host/sdhci-esdhc-imx.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers

[PATCH 0/5] mmc: Miscellaneous fixes for SDHCI and MMC core

2014-10-01 Thread Andrew Gabbasov
Andrew Gabbasov (5): mmc: sdhci: Balance vmmc regulator_disable() mmc: sdhci: fix error conditions for controller reset mmc: core: Initialize SET_BLOCK_COUNT request fields mmc: core: Add debug message for SET_BLOCK_COUNT result mmc: core: Fix error paths and messages in mmc_init_card

[PATCH 1/5] mmc: sdhci: Balance vmmc regulator_disable()

2014-10-01 Thread Andrew Gabbasov
. Extra regulator_disable call in sdhci_remove_host is unbalanced and causes a warning reported by regulator core, so should be removed. Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/host/sdhci.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/mmc/host

[PATCH 2/5] mmc: sdhci: fix error conditions for controller reset

2014-10-01 Thread Andrew Gabbasov
-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/host/sdhci.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 0272021..46e84a0 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c

[PATCH 3/5] mmc: core: Initialize SET_BLOCK_COUNT request fields

2014-10-01 Thread Andrew Gabbasov
Some request fields are initialized just before request processing for sanity purposes. This is done for command, data, and stop parts of the request, but not for sbc (set block count) part. Add such initialization for that part too. Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com

[PATCH 4/5] mmc: core: Add debug message for SET_BLOCK_COUNT result

2014-10-01 Thread Andrew Gabbasov
The debug messages with commands execution results, that are printed after processing the request, do not include results of sbc (set block count) part of request. Add the debug message for that part too. Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/core/core.c | 8

[PATCH 5/5] mmc: core: Fix error paths and messages in mmc_init_card

2014-10-01 Thread Andrew Gabbasov
the operation processing is not continued. Change these messages to error level. Signed-off-by: Andrew Gabbasov andrew_gabba...@mentor.com --- drivers/mmc/core/mmc.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index