All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Nicolae_Rosia@mentor.com (Nicolae Rosia)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] mfd: twl-core: export twl_get_regmap
Date: Sat, 12 Nov 2016 13:38:13 +0200	[thread overview]
Message-ID: <1478950693-13959-1-git-send-email-Nicolae_Rosia@mentor.com> (raw)

We want to get rid of global twl_i2c_{write/read}.
As a first step, allow clients to get the regmap and write directly

Signed-off-by: Nicolae Rosia <Nicolae_Rosia@mentor.com>
---
 drivers/mfd/twl-core.c  | 3 ++-
 include/linux/i2c/twl.h | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c
index c64615d..49e6a4b 100644
--- a/drivers/mfd/twl-core.c
+++ b/drivers/mfd/twl-core.c
@@ -421,7 +421,7 @@ EXPORT_SYMBOL(twl_rev);
  *
  * Returns the regmap pointer or NULL in case of failure.
  */
-static struct regmap *twl_get_regmap(u8 mod_no)
+struct regmap *twl_get_regmap(u8 mod_no)
 {
 	int sid;
 	struct twl_client *twl;
@@ -440,6 +440,7 @@ static struct regmap *twl_get_regmap(u8 mod_no)
 
 	return twl->regmap;
 }
+EXPORT_SYMBOL(twl_get_regmap);
 
 /**
  * twl_i2c_write - Writes a n bit register in TWL4030/TWL5030/TWL60X0
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h
index 9ad7828..4c43cdb3 100644
--- a/include/linux/i2c/twl.h
+++ b/include/linux/i2c/twl.h
@@ -174,6 +174,8 @@ static inline int twl_class_is_ ##class(void)	\
 TWL_CLASS_IS(4030, TWL4030_CLASS_ID)
 TWL_CLASS_IS(6030, TWL6030_CLASS_ID)
 
+struct regmap *twl_get_regmap(u8 mod_no);
+
 /* Set the regcache bypass for the regmap associated with the nodule */
 int twl_set_regcache_bypass(u8 mod_no, bool enable);
 
-- 
2.5.5

WARNING: multiple messages have this Message-ID (diff)
From: Nicolae Rosia <Nicolae_Rosia@mentor.com>
To: Tony Lindgren <tony@atomide.com>, Lee Jones <lee.jones@linaro.org>
Cc: linux-omap@vger.kernel.org,
	Nicolae Rosia <Nicolae_Rosia@mentor.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH] mfd: twl-core: export twl_get_regmap
Date: Sat, 12 Nov 2016 13:38:13 +0200	[thread overview]
Message-ID: <1478950693-13959-1-git-send-email-Nicolae_Rosia@mentor.com> (raw)

We want to get rid of global twl_i2c_{write/read}.
As a first step, allow clients to get the regmap and write directly

Signed-off-by: Nicolae Rosia <Nicolae_Rosia@mentor.com>
---
 drivers/mfd/twl-core.c  | 3 ++-
 include/linux/i2c/twl.h | 2 ++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c
index c64615d..49e6a4b 100644
--- a/drivers/mfd/twl-core.c
+++ b/drivers/mfd/twl-core.c
@@ -421,7 +421,7 @@ EXPORT_SYMBOL(twl_rev);
  *
  * Returns the regmap pointer or NULL in case of failure.
  */
-static struct regmap *twl_get_regmap(u8 mod_no)
+struct regmap *twl_get_regmap(u8 mod_no)
 {
 	int sid;
 	struct twl_client *twl;
@@ -440,6 +440,7 @@ static struct regmap *twl_get_regmap(u8 mod_no)
 
 	return twl->regmap;
 }
+EXPORT_SYMBOL(twl_get_regmap);
 
 /**
  * twl_i2c_write - Writes a n bit register in TWL4030/TWL5030/TWL60X0
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h
index 9ad7828..4c43cdb3 100644
--- a/include/linux/i2c/twl.h
+++ b/include/linux/i2c/twl.h
@@ -174,6 +174,8 @@ static inline int twl_class_is_ ##class(void)	\
 TWL_CLASS_IS(4030, TWL4030_CLASS_ID)
 TWL_CLASS_IS(6030, TWL6030_CLASS_ID)
 
+struct regmap *twl_get_regmap(u8 mod_no);
+
 /* Set the regcache bypass for the regmap associated with the nodule */
 int twl_set_regcache_bypass(u8 mod_no, bool enable);
 
-- 
2.5.5

             reply	other threads:[~2016-11-12 11:38 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-12 11:38 Nicolae Rosia [this message]
2016-11-12 11:38 ` [PATCH] mfd: twl-core: export twl_get_regmap Nicolae Rosia
2016-11-18 18:55 ` Lee Jones
2016-11-18 18:55   ` Lee Jones
2016-11-20 12:54   ` Nicolae Rosia
2016-11-20 12:54     ` Nicolae Rosia
2016-11-21  9:23     ` Lee Jones
2016-11-21  9:23       ` Lee Jones
2016-11-21  9:31       ` Russell King - ARM Linux
2016-11-21  9:31         ` Russell King - ARM Linux
2016-11-21 10:03         ` Nicolae Rosia
2016-11-21 10:03           ` Nicolae Rosia
2016-11-21 13:37           ` Russell King - ARM Linux
2016-11-21 13:37             ` Russell King - ARM Linux
2016-11-23 11:12             ` Russell King - ARM Linux
2016-11-23 11:12               ` Russell King - ARM Linux
2016-11-23 11:22               ` Rosia, Nicolae
2016-11-23 11:22                 ` Rosia, Nicolae
2016-11-26 18:23                 ` Nicolae Rosia
2016-11-26 18:23                   ` Nicolae Rosia

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1478950693-13959-1-git-send-email-Nicolae_Rosia@mentor.com \
    --to=nicolae_rosia@mentor.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.