[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20191125112754.25223-10-qais.yousef@arm.com>
Date: Mon, 25 Nov 2019 11:27:49 +0000
From: Qais Yousef <qais.yousef@....com>
To: Thomas Gleixner <tglx@...utronix.de>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Cc: Qais Yousef <qais.yousef@....com>,
"Rafael J. Wysocki" <rafael@...nel.org>,
linux-kernel@...r.kernel.org
Subject: [PATCH v2 09/14] driver: base: cpu: Export device_online/offline
And the {lock,unlock}_device_hotplug so that they can be used from
modules.
This is in preparation to replace cpu_up/down with
device_online/offline; which kernel/torture.c will require to be
exported to be built as a module.
Acked-by: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
Signed-off-by: Qais Yousef <qais.yousef@....com>
CC: Greg Kroah-Hartman <gregkh@...uxfoundation.org>
CC: "Rafael J. Wysocki" <rafael@...nel.org>
CC: linux-kernel@...r.kernel.org
---
drivers/base/core.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/base/core.c b/drivers/base/core.c
index 7bd9cd366d41..29b40c71b1ba 100644
--- a/drivers/base/core.c
+++ b/drivers/base/core.c
@@ -883,11 +883,13 @@ void lock_device_hotplug(void)
{
mutex_lock(&device_hotplug_lock);
}
+EXPORT_SYMBOL_GPL(lock_device_hotplug);
void unlock_device_hotplug(void)
{
mutex_unlock(&device_hotplug_lock);
}
+EXPORT_SYMBOL_GPL(unlock_device_hotplug);
int lock_device_hotplug_sysfs(void)
{
@@ -2679,6 +2681,7 @@ int device_offline(struct device *dev)
return ret;
}
+EXPORT_SYMBOL_GPL(device_offline);
/**
* device_online - Put the device back online after successful device_offline().
@@ -2710,6 +2713,7 @@ int device_online(struct device *dev)
return ret;
}
+EXPORT_SYMBOL_GPL(device_online);
struct root_device {
struct device dev;
--
2.17.1
Powered by blists - more mailing lists