liteuart.c (a23e1966932464e1c5226cb9ac4ce1d5fc10ba22) | liteuart.c (5cbb9b1705ab8d98ed96affa4ec399023a22b755) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * LiteUART serial controller (LiteX) Driver 4 * 5 * Copyright (C) 2019-2020 Antmicro <www.antmicro.com> 6 */ 7 8#include <linux/bits.h> --- 339 unchanged lines hidden (view full) --- 348static const struct of_device_id liteuart_of_match[] = { 349 { .compatible = "litex,liteuart" }, 350 {} 351}; 352MODULE_DEVICE_TABLE(of, liteuart_of_match); 353 354static struct platform_driver liteuart_platform_driver = { 355 .probe = liteuart_probe, | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * LiteUART serial controller (LiteX) Driver 4 * 5 * Copyright (C) 2019-2020 Antmicro <www.antmicro.com> 6 */ 7 8#include <linux/bits.h> --- 339 unchanged lines hidden (view full) --- 348static const struct of_device_id liteuart_of_match[] = { 349 { .compatible = "litex,liteuart" }, 350 {} 351}; 352MODULE_DEVICE_TABLE(of, liteuart_of_match); 353 354static struct platform_driver liteuart_platform_driver = { 355 .probe = liteuart_probe, |
356 .remove_new = liteuart_remove, | 356 .remove = liteuart_remove, |
357 .driver = { 358 .name = KBUILD_MODNAME, 359 .of_match_table = liteuart_of_match, 360 }, 361}; 362 363#ifdef CONFIG_SERIAL_LITEUART_CONSOLE 364 --- 114 unchanged lines hidden --- | 357 .driver = { 358 .name = KBUILD_MODNAME, 359 .of_match_table = liteuart_of_match, 360 }, 361}; 362 363#ifdef CONFIG_SERIAL_LITEUART_CONSOLE 364 --- 114 unchanged lines hidden --- |