File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1779,7 +1779,7 @@ static void qcom_geni_serial_remove(struct platform_device *pdev)
1779
1779
uart_remove_one_port (drv , & port -> uport );
1780
1780
}
1781
1781
1782
- static int qcom_geni_serial_sys_suspend (struct device * dev )
1782
+ static int qcom_geni_serial_suspend (struct device * dev )
1783
1783
{
1784
1784
struct qcom_geni_serial_port * port = dev_get_drvdata (dev );
1785
1785
struct uart_port * uport = & port -> uport ;
@@ -1796,7 +1796,7 @@ static int qcom_geni_serial_sys_suspend(struct device *dev)
1796
1796
return uart_suspend_port (private_data -> drv , uport );
1797
1797
}
1798
1798
1799
- static int qcom_geni_serial_sys_resume (struct device * dev )
1799
+ static int qcom_geni_serial_resume (struct device * dev )
1800
1800
{
1801
1801
int ret ;
1802
1802
struct qcom_geni_serial_port * port = dev_get_drvdata (dev );
@@ -1822,8 +1822,7 @@ static const struct qcom_geni_device_data qcom_geni_uart_data = {
1822
1822
};
1823
1823
1824
1824
static const struct dev_pm_ops qcom_geni_serial_pm_ops = {
1825
- SYSTEM_SLEEP_PM_OPS (qcom_geni_serial_sys_suspend ,
1826
- qcom_geni_serial_sys_resume )
1825
+ SYSTEM_SLEEP_PM_OPS (qcom_geni_serial_suspend , qcom_geni_serial_resume )
1827
1826
};
1828
1827
1829
1828
static const struct of_device_id qcom_geni_serial_match_table [] = {
You can’t perform that action at this time.
0 commit comments