mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
Replace _PPC64_SERIAL_H with _ASM_POWERPC_SERIAL_H to match the actual macro name. Remove an empty comment while at it. Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Reviewed-by: Mukesh Kumar Chaurasiya (IBM) <mkchauras@gmail.com> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Link: https://patch.msgid.link/20260623153825.403819-2-thorsten.blum@linux.dev
20 lines
472 B
C
20 lines
472 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
#ifndef _ASM_POWERPC_SERIAL_H
|
|
#define _ASM_POWERPC_SERIAL_H
|
|
|
|
/*
|
|
* Serial ports are not listed here, because they are discovered
|
|
* through the device tree.
|
|
*/
|
|
|
|
/* Default baud base if not found in device-tree */
|
|
#define BASE_BAUD ( 1843200 / 16 )
|
|
|
|
#ifdef CONFIG_PPC_UDBG_16550
|
|
extern void find_legacy_serial_ports(void);
|
|
#else
|
|
#define find_legacy_serial_ports() do { } while (0)
|
|
#endif
|
|
|
|
#endif /* _ASM_POWERPC_SERIAL_H */
|