[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1439374365-20623-12-git-send-email-mpa@pengutronix.de>
Date: Wed, 12 Aug 2015 12:12:36 +0200
From: Markus Pargmann <mpa@...gutronix.de>
To: Mark Brown <broonie@...nel.org>,
Jonathan Cameron <jic23@...nel.org>
Cc: Srinivas Pandruvada <srinivas.pandruvada@...ux.intel.com>,
linux-iio@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org, kernel@...gutronix.de,
Markus Pargmann <mpa@...gutronix.de>
Subject: [PATCH 11/20] regmap: _regmap_raw_read: Add handling of busses without bus->read()
Handle easy reads by using bus->reg_read(). Return with an error value
if a read is requested that can not be handled with reg_read().
Signed-off-by: Markus Pargmann <mpa@...gutronix.de>
---
drivers/base/regmap/regmap.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index 87f15fb60bc5..3b663350c573 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -2071,6 +2071,21 @@ static int _regmap_raw_read(struct regmap *map, unsigned int reg, void *val,
WARN_ON(!map->bus);
+ /*
+ * There are busses that do not have a read function as it is optional.
+ * Use their reg_read function instead if the requested number of bytes
+ * is correct.
+ */
+ if (!map->bus->read) {
+ /*
+ * bus_reg_read() does not support reading values that are not
+ * exactly the size of format.val_bytes
+ */
+ if (val_len != map->format.val_bytes)
+ return -EINVAL;
+ return _regmap_bus_reg_read(map, reg, val);
+ }
+
range = _regmap_range_lookup(map, reg);
if (range) {
ret = _regmap_select_page(map, ®, range,
--
2.4.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists