mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

There is inconvenient for maintainers and maintainership to have some quirks under architectural code. Move it to the specific quirk file like other 8250-compatible drivers do. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20250627182743.1273326-1-andriy.shevchenko@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 lines
243 B
C
13 lines
243 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_CE4100_H_
|
|
#define _ASM_CE4100_H_
|
|
|
|
int ce4100_pci_init(void);
|
|
|
|
#ifdef CONFIG_SERIAL_8250
|
|
void __init sdv_serial_fixup(void);
|
|
#else
|
|
static inline void sdv_serial_fixup(void) {};
|
|
#endif
|
|
|
|
#endif
|