diff options
author | Markus Schneider-Pargmann <msp@baylibre.com> | 2024-10-07 08:08:54 +0200 |
---|---|---|
committer | Nishanth Menon <nm@ti.com> | 2024-10-25 17:17:37 +0200 |
commit | 3e360703d0bff3bb5643b2a0bf9a670931ba8b71 (patch) | |
tree | 4b0facf8fc455507511a90071414bb2c07fceac4 /drivers/base | |
parent | soc: ti: knav_qmss_queue: Drop redundant continue statement (diff) | |
download | linux-3e360703d0bff3bb5643b2a0bf9a670931ba8b71.tar.xz linux-3e360703d0bff3bb5643b2a0bf9a670931ba8b71.zip |
PM: QoS: Export dev_pm_qos_read_value
Export the function dev_pm_qos_read_value(). Most other functions
mentioned in Documentation/power/pm_qos_interface.rst are already
exported, so export this one as well.
This function will be used to read the resume latency in a driver that
can also be compiled as a module.
Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
Tested-by: Kevin Hilman <khilman@baylibre.com>
Tested-by: Roger Quadros <rogerq@kernel.org>
Reviewed-by: Dhruva Gole <d-gole@ti.com>
Reviewed-by: Kevin Hilman <khilman@baylibre.com>
Acked-by: Rafael J. Wysocki <rafael@kernel.org>
Link: https://lore.kernel.org/lkml/CAJZ5v0g1Ri_wKYppomE6RXqcZXRnX7bLOPMtsQaao0uchSfE9A@mail.gmail.com/
Link: https://lore.kernel.org/r/20241007-tisci-syssuspendresume-v13-1-ed54cd659a49@baylibre.com
Signed-off-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/power/qos.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/power/qos.c b/drivers/base/power/qos.c index bd77f6734f14..ff393cba7649 100644 --- a/drivers/base/power/qos.c +++ b/drivers/base/power/qos.c @@ -137,6 +137,7 @@ s32 dev_pm_qos_read_value(struct device *dev, enum dev_pm_qos_req_type type) return ret; } +EXPORT_SYMBOL_GPL(dev_pm_qos_read_value); /** * apply_constraint - Add/modify/remove device PM QoS request. |