sunplus-uart.c (36ec807b627b4c0a0a382f0ae48eac7187d14b2b) | sunplus-uart.c (5cbb9b1705ab8d98ed96affa4ec399023a22b755) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Sunplus SoC UART driver 4 * 5 * Author: Hammer Hsieh <hammerh0314@gmail.com> 6 * 7 * Note1: This driver is 8250-like uart, but are not register compatible. 8 * --- 683 unchanged lines hidden (view full) --- 692static const struct of_device_id sp_uart_of_match[] = { 693 { .compatible = "sunplus,sp7021-uart" }, 694 {} 695}; 696MODULE_DEVICE_TABLE(of, sp_uart_of_match); 697 698static struct platform_driver sunplus_uart_platform_driver = { 699 .probe = sunplus_uart_probe, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Sunplus SoC UART driver 4 * 5 * Author: Hammer Hsieh <hammerh0314@gmail.com> 6 * 7 * Note1: This driver is 8250-like uart, but are not register compatible. 8 * --- 683 unchanged lines hidden (view full) --- 692static const struct of_device_id sp_uart_of_match[] = { 693 { .compatible = "sunplus,sp7021-uart" }, 694 {} 695}; 696MODULE_DEVICE_TABLE(of, sp_uart_of_match); 697 698static struct platform_driver sunplus_uart_platform_driver = { 699 .probe = sunplus_uart_probe, |
700 .remove_new = sunplus_uart_remove, | 700 .remove = sunplus_uart_remove, |
701 .driver = { 702 .name = "sunplus_uart", 703 .of_match_table = sp_uart_of_match, 704 .pm = &sunplus_uart_pm_ops, 705 } 706}; 707 708static int __init sunplus_uart_init(void) --- 59 unchanged lines hidden --- | 701 .driver = { 702 .name = "sunplus_uart", 703 .of_match_table = sp_uart_of_match, 704 .pm = &sunplus_uart_pm_ops, 705 } 706}; 707 708static int __init sunplus_uart_init(void) --- 59 unchanged lines hidden --- |