[PATCH 2/2] regmap: mmio: remove some error checks now in the core

From: Stephen Warren
Date: Fri Apr 06 2012 - 17:17:38 EST


From: Stephen Warren <swarren@xxxxxxxxxx>

These error checks are implemented in regmap core. Remove the duplicate
code from regmap-mmio.c

Signed-off-by: Stephen Warren <swarren@xxxxxxxxxx>
---
This logically slight depends on "regmap: validate regmap_raw_read/write
val_len" that I just sent, but its not really a big deal.

drivers/base/regmap/regmap-mmio.c | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)

diff --git a/drivers/base/regmap/regmap-mmio.c b/drivers/base/regmap/regmap-mmio.c
index ffa0e85..bdf4dc8 100644
--- a/drivers/base/regmap/regmap-mmio.c
+++ b/drivers/base/regmap/regmap-mmio.c
@@ -37,9 +37,6 @@ static int regmap_mmio_gather_write(void *context,

BUG_ON(reg_size != 4);

- if (val_size % ctx->val_bytes)
- return -EIO;
-
offset = be32_to_cpup(reg);

while (val_size) {
@@ -86,9 +83,6 @@ static int regmap_mmio_read(void *context,

BUG_ON(reg_size != 4);

- if (val_size % ctx->val_bytes)
- return -EIO;
-
offset = be32_to_cpup(reg);

while (val_size) {
--
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/