PM / AVS: SmartReflex: fix driver name
DRIVER_NAME was undefined for SmartReflex. Now it is defined with valid value "smartreflex". It is needed to define proper value for: MODULE_ALIAS("platform:" DRIVER_NAME); Signed-off-by: Andrii Tseglytskyi <andrii.tseglytskyi@ti.com> Acked-by: Nishanth Menon <nm@ti.com> Signed-off-by: Kevin Hilman <khilman@linaro.org>
This commit is contained in:
parent
bd4a36bec0
commit
33da28246f
|
@ -27,6 +27,7 @@
|
|||
#include <linux/pm_runtime.h>
|
||||
#include <linux/power/smartreflex.h>
|
||||
|
||||
#define DRIVER_NAME "smartreflex"
|
||||
#define SMARTREFLEX_NAME_LEN 16
|
||||
#define NVALUE_NAME_LEN 40
|
||||
#define SR_DISABLE_TIMEOUT 200
|
||||
|
@ -1070,7 +1071,7 @@ static struct platform_driver smartreflex_driver = {
|
|||
.remove = omap_sr_remove,
|
||||
.shutdown = omap_sr_shutdown,
|
||||
.driver = {
|
||||
.name = "smartreflex",
|
||||
.name = DRIVER_NAME,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue