summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/module.c
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <greg@kroah.com>2014-11-15 12:12:16 -0800
committerGreg Kroah-Hartman <greg@kroah.com>2014-11-15 12:12:16 -0800
commit0ac5a838811c5921783cd8da410b23ee673b7e55 (patch)
treed7062a4572d93cc42271ce0f96db1e0a4a05470a /drivers/staging/greybus/module.c
parent86bf33afa3c1d52f01f9e12c2e26b730acb6bbd6 (diff)
greybus: skeleton for future uevents.
Implement a skeleton for the uevent framework, to be filled in later when we figure out what type of module "matching" we want to do for things (connections, interfaces, modules, etc.) Based on a patch from Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
Diffstat (limited to 'drivers/staging/greybus/module.c')
-rw-r--r--drivers/staging/greybus/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/greybus/module.c b/drivers/staging/greybus/module.c
index 51bd5c6131ce..f432bea3c818 100644
--- a/drivers/staging/greybus/module.c
+++ b/drivers/staging/greybus/module.c
@@ -62,7 +62,7 @@ static void greybus_module_release(struct device *dev)
kfree(gmod);
}
-static struct device_type greybus_module_type = {
+struct device_type greybus_module_type = {
.name = "greybus_module",
.release = greybus_module_release,
};