pic32_uart.c (36ec807b627b4c0a0a382f0ae48eac7187d14b2b) pic32_uart.c (5cbb9b1705ab8d98ed96affa4ec399023a22b755)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * PIC32 Integrated Serial Driver.
4 *
5 * Copyright (C) 2015 Microchip Technology, Inc.
6 *
7 * Authors:
8 * Sorin-Andrei Pistirica <andrei.pistirica@microchip.com>

--- 942 unchanged lines hidden (view full) ---

951static const struct of_device_id pic32_serial_dt_ids[] = {
952 { .compatible = "microchip,pic32mzda-uart" },
953 { /* sentinel */ }
954};
955MODULE_DEVICE_TABLE(of, pic32_serial_dt_ids);
956
957static struct platform_driver pic32_uart_platform_driver = {
958 .probe = pic32_uart_probe,
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * PIC32 Integrated Serial Driver.
4 *
5 * Copyright (C) 2015 Microchip Technology, Inc.
6 *
7 * Authors:
8 * Sorin-Andrei Pistirica <andrei.pistirica@microchip.com>

--- 942 unchanged lines hidden (view full) ---

951static const struct of_device_id pic32_serial_dt_ids[] = {
952 { .compatible = "microchip,pic32mzda-uart" },
953 { /* sentinel */ }
954};
955MODULE_DEVICE_TABLE(of, pic32_serial_dt_ids);
956
957static struct platform_driver pic32_uart_platform_driver = {
958 .probe = pic32_uart_probe,
959 .remove_new = pic32_uart_remove,
959 .remove = pic32_uart_remove,
960 .driver = {
961 .name = PIC32_DEV_NAME,
962 .of_match_table = of_match_ptr(pic32_serial_dt_ids),
963 .suppress_bind_attrs = IS_BUILTIN(CONFIG_SERIAL_PIC32),
964 },
965};
966
967static int __init pic32_uart_init(void)

--- 33 unchanged lines hidden ---
960 .driver = {
961 .name = PIC32_DEV_NAME,
962 .of_match_table = of_match_ptr(pic32_serial_dt_ids),
963 .suppress_bind_attrs = IS_BUILTIN(CONFIG_SERIAL_PIC32),
964 },
965};
966
967static int __init pic32_uart_init(void)

--- 33 unchanged lines hidden ---