* [PATCH 0/2 v2] Add of match tables for the ChromeOs EC subdevices
@ 2014-08-26 7:47 Sjoerd Simons
2014-08-26 7:47 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
2014-08-26 7:47 ` [PATCH 2/2 v2] input: cros_ec_keyb: " Sjoerd Simons
0 siblings, 2 replies; 5+ messages in thread
From: Sjoerd Simons @ 2014-08-26 7:47 UTC (permalink / raw)
To: linux-arm-kernel
The ChromeOS EC MFD driver registers its sub-devices with both a (platform)
name and an of compatibility string. As a result of this the modalias passed on
to user-space will be based on the of compatibility string. Thus to be able to
rely on autoloading in case the subdevices are build as modules they need to
export the necessary module aliases based to match the of information.
The two patches in these series add the requird of match information to the EC
subdevices
Changes in v2: Fix stray newline and indentation issues in the first patch
Sjoerd Simons (2):
i2c: cros-ec-tunnel: Add of match table
input: cros_ec_keyb: Add of match table
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 9 +++++++++
drivers/input/keyboard/cros_ec_keyb.c | 9 +++++++++
2 files changed, 18 insertions(+)
--
2.1.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table
2014-08-26 7:47 [PATCH 0/2 v2] Add of match tables for the ChromeOs EC subdevices Sjoerd Simons
@ 2014-08-26 7:47 ` Sjoerd Simons
2014-08-26 7:47 ` [PATCH 2/2 v2] input: cros_ec_keyb: " Sjoerd Simons
1 sibling, 0 replies; 5+ messages in thread
From: Sjoerd Simons @ 2014-08-26 7:47 UTC (permalink / raw)
To: linux-arm-kernel
To enable the cros-ec-tunnel driver to be auto-loaded when build as a
module add an of match table (and export it) to match the modalias
information passed on to userspace as the Cros EC MFD driver registers
the MFD subdevices with an of_compatibility string.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
Changes in v2: Fix stray newline and indentation issues
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
index 05e033c..0403ec1 100644
--- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c
+++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
@@ -310,11 +310,20 @@ static int ec_i2c_remove(struct platform_device *dev)
return 0;
}
+#ifdef CONFIG_OF
+static const struct of_device_id cros_ec_i2c_of_match[] = {
+ { .compatible = "google,cros-ec-i2c-tunnel" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, cros_ec_i2c_of_match);
+#endif
+
static struct platform_driver ec_i2c_tunnel_driver = {
.probe = ec_i2c_probe,
.remove = ec_i2c_remove,
.driver = {
.name = "cros-ec-i2c-tunnel",
+ .of_match_table = of_match_ptr(cros_ec_i2c_of_match),
},
};
--
2.1.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 2/2 v2] input: cros_ec_keyb: Add of match table
2014-08-26 7:47 [PATCH 0/2 v2] Add of match tables for the ChromeOs EC subdevices Sjoerd Simons
2014-08-26 7:47 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
@ 2014-08-26 7:47 ` Sjoerd Simons
1 sibling, 0 replies; 5+ messages in thread
From: Sjoerd Simons @ 2014-08-26 7:47 UTC (permalink / raw)
To: linux-arm-kernel
To enable the cros_ec_keyb driver to be auto-loaded when build as
module add an of match table (and export it) to match the modalias
information passed on to userspace as the Cros EC MFD driver registers
the MFD subdevices with an of_compatibility string.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
---
Changes in v2: none
drivers/input/keyboard/cros_ec_keyb.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/input/keyboard/cros_ec_keyb.c b/drivers/input/keyboard/cros_ec_keyb.c
index 791781a..e1903ec 100644
--- a/drivers/input/keyboard/cros_ec_keyb.c
+++ b/drivers/input/keyboard/cros_ec_keyb.c
@@ -342,10 +342,19 @@ static int cros_ec_keyb_resume(struct device *dev)
static SIMPLE_DEV_PM_OPS(cros_ec_keyb_pm_ops, NULL, cros_ec_keyb_resume);
+#ifdef CONFIG_OF
+static const struct of_device_id cros_ec_keyb_of_match[] = {
+ { .compatible = "google,cros-ec-keyb" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, cros_ec_keyb_of_match);
+#endif
+
static struct platform_driver cros_ec_keyb_driver = {
.probe = cros_ec_keyb_probe,
.driver = {
.name = "cros-ec-keyb",
+ .of_match_table = of_match_ptr(cros_ec_keyb_of_match),
.pm = &cros_ec_keyb_pm_ops,
},
};
--
2.1.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 0/2] Add of match tables for the ChromeOs EC subdevices
@ 2014-08-22 23:03 Sjoerd Simons
2014-08-22 23:03 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
0 siblings, 1 reply; 5+ messages in thread
From: Sjoerd Simons @ 2014-08-22 23:03 UTC (permalink / raw)
To: linux-arm-kernel
The ChromeOS EC MFD driver registers its sub-devices with both a (platform)
name and an of compatibility string. As a result of this the modalias passed on
to user-space will be based on the of compatibility string. Thus to be able to
rely on autoloading in case the subdevices are build as modules they need to
export the necessary module aliases based to match the of information.
The two patches in these series add the requird of match information to the EC
subdevices
Sjoerd Simons (2):
i2c: cros-ec-tunnel: Add of match table
input: cros_ec_keyb: Add of match table
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 9 +++++++++
drivers/input/keyboard/cros_ec_keyb.c | 10 ++++++++++
2 files changed, 19 insertions(+)
--
2.1.0
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table
2014-08-22 23:03 [PATCH 0/2] Add of match tables for the ChromeOs EC subdevices Sjoerd Simons
@ 2014-08-22 23:03 ` Sjoerd Simons
2014-08-25 9:37 ` Javier Martinez Canillas
0 siblings, 1 reply; 5+ messages in thread
From: Sjoerd Simons @ 2014-08-22 23:03 UTC (permalink / raw)
To: linux-arm-kernel
To enable the cros-ec-tunnel driver to be auto-loaded when build as a
module add an of match table (and export it) to match the modalias
information passed on to userspace as the Cros EC MFD driver registers
the MFD subdevices with an of_compatibility string.
Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
---
drivers/i2c/busses/i2c-cros-ec-tunnel.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/i2c/busses/i2c-cros-ec-tunnel.c b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
index 05e033c..3c15dcc 100644
--- a/drivers/i2c/busses/i2c-cros-ec-tunnel.c
+++ b/drivers/i2c/busses/i2c-cros-ec-tunnel.c
@@ -310,11 +310,20 @@ static int ec_i2c_remove(struct platform_device *dev)
return 0;
}
+#ifdef CONFIG_OF
+static const struct of_device_id cros_ec_i2c_of_match[] = {
+ { .compatible = "google,cros-ec-i2c-tunnel" },
+ {},
+};
+MODULE_DEVICE_TABLE(of, cros_ec_i2c_of_match);
+#endif
+
static struct platform_driver ec_i2c_tunnel_driver = {
.probe = ec_i2c_probe,
.remove = ec_i2c_remove,
.driver = {
.name = "cros-ec-i2c-tunnel",
+ .of_match_table = of_match_ptr (cros_ec_i2c_of_match),
},
};
--
2.1.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table
2014-08-22 23:03 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
@ 2014-08-25 9:37 ` Javier Martinez Canillas
0 siblings, 0 replies; 5+ messages in thread
From: Javier Martinez Canillas @ 2014-08-25 9:37 UTC (permalink / raw)
To: linux-arm-kernel
Hello Sjoerd,
On Sat, Aug 23, 2014 at 1:03 AM, Sjoerd Simons
<sjoerd.simons@collabora.co.uk> wrote:
> To enable the cros-ec-tunnel driver to be auto-loaded when build as a
> module add an of match table (and export it) to match the modalias
> information passed on to userspace as the Cros EC MFD driver registers
> the MFD subdevices with an of_compatibility string.
>
> Signed-off-by: Sjoerd Simons <sjoerd.simons@collabora.co.uk>
> ---
Looks good to me:
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Best regards,
Javier
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-08-26 7:47 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-26 7:47 [PATCH 0/2 v2] Add of match tables for the ChromeOs EC subdevices Sjoerd Simons
2014-08-26 7:47 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
2014-08-26 7:47 ` [PATCH 2/2 v2] input: cros_ec_keyb: " Sjoerd Simons
-- strict thread matches above, loose matches on Subject: below --
2014-08-22 23:03 [PATCH 0/2] Add of match tables for the ChromeOs EC subdevices Sjoerd Simons
2014-08-22 23:03 ` [PATCH 1/2] i2c: cros-ec-tunnel: Add of match table Sjoerd Simons
2014-08-25 9:37 ` Javier Martinez Canillas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox