fsl_linflexuart.c (36ec807b627b4c0a0a382f0ae48eac7187d14b2b) | fsl_linflexuart.c (5cbb9b1705ab8d98ed96affa4ec399023a22b755) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Freescale LINFlexD UART serial port driver 4 * 5 * Copyright 2012-2016 Freescale Semiconductor, Inc. 6 * Copyright 2017-2019 NXP 7 */ 8 --- 868 unchanged lines hidden (view full) --- 877 return 0; 878} 879#endif 880 881static SIMPLE_DEV_PM_OPS(linflex_pm_ops, linflex_suspend, linflex_resume); 882 883static struct platform_driver linflex_driver = { 884 .probe = linflex_probe, | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* 3 * Freescale LINFlexD UART serial port driver 4 * 5 * Copyright 2012-2016 Freescale Semiconductor, Inc. 6 * Copyright 2017-2019 NXP 7 */ 8 --- 868 unchanged lines hidden (view full) --- 877 return 0; 878} 879#endif 880 881static SIMPLE_DEV_PM_OPS(linflex_pm_ops, linflex_suspend, linflex_resume); 882 883static struct platform_driver linflex_driver = { 884 .probe = linflex_probe, |
885 .remove_new = linflex_remove, | 885 .remove = linflex_remove, |
886 .driver = { 887 .name = DRIVER_NAME, 888 .of_match_table = linflex_dt_ids, 889 .pm = &linflex_pm_ops, 890 }, 891}; 892 893static int __init linflex_serial_init(void) --- 25 unchanged lines hidden --- | 886 .driver = { 887 .name = DRIVER_NAME, 888 .of_match_table = linflex_dt_ids, 889 .pm = &linflex_pm_ops, 890 }, 891}; 892 893static int __init linflex_serial_init(void) --- 25 unchanged lines hidden --- |