devfreq: suppress platform driver bind / unbind feature

For simple-dev and devbw platform driver does not
support the manual bind / unbind feature through sysfs,
when the governor is registered and started.
Suppress the bind / unbind calls using driver attribute.

Change-Id: Ide843476bdc3870c48f6557097ee549e7a794a22
Signed-off-by: Santosh Mardi <gsantosh@codeaurora.org>
Signed-off-by: Rama Aparna Mallavarapu <aparnam@codeaurora.org>
This commit is contained in:
Rama Aparna Mallavarapu
2019-01-16 20:36:59 -08:00
parent d548f6c37d
commit 190850898d
2 changed files with 3 additions and 1 deletions

View File

@ -213,6 +213,7 @@ static struct platform_driver devbw_driver = {
.driver = {
.name = "devbw",
.of_match_table = devbw_match_table,
.suppress_bind_attrs = true,
},
};

View File

@ -1,6 +1,6 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2014-2015, 2017, 2019, The Linux Foundation. All rights reserved.
* Copyright (c) 2014-2015, 2017-2018, 2019, The Linux Foundation. All rights reserved.
*/
#define pr_fmt(fmt) "devfreq-simple-dev: " fmt
@ -204,6 +204,7 @@ static struct platform_driver devfreq_clock_driver = {
.driver = {
.name = "devfreq-simple-dev",
.of_match_table = devfreq_simple_match_table,
.suppress_bind_attrs = true,
},
};
module_platform_driver(devfreq_clock_driver);