|
@@ -543,7 +543,7 @@ static void dsa_switch_destroy(struct dsa_switch *ds)
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
#ifdef CONFIG_PM_SLEEP
|
|
-static int dsa_switch_suspend(struct dsa_switch *ds)
|
|
|
|
|
|
+int dsa_switch_suspend(struct dsa_switch *ds)
|
|
{
|
|
{
|
|
int i, ret = 0;
|
|
int i, ret = 0;
|
|
|
|
|
|
@@ -562,8 +562,9 @@ static int dsa_switch_suspend(struct dsa_switch *ds)
|
|
|
|
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
+EXPORT_SYMBOL_GPL(dsa_switch_suspend);
|
|
|
|
|
|
-static int dsa_switch_resume(struct dsa_switch *ds)
|
|
|
|
|
|
+int dsa_switch_resume(struct dsa_switch *ds)
|
|
{
|
|
{
|
|
int i, ret = 0;
|
|
int i, ret = 0;
|
|
|
|
|
|
@@ -585,6 +586,7 @@ static int dsa_switch_resume(struct dsa_switch *ds)
|
|
|
|
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
+EXPORT_SYMBOL_GPL(dsa_switch_resume);
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/* platform driver init and cleanup *****************************************/
|
|
/* platform driver init and cleanup *****************************************/
|