1 /*
2  * Copyright (C) 2019-2022 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #include <types.h>
8 #include <pci.h>
9 
uart16550_init(__unused bool early_boot)10 void uart16550_init(__unused bool early_boot) {}
11 
is_pci_dbg_uart(__unused union pci_bdf bdf_value)12 bool is_pci_dbg_uart(__unused union pci_bdf bdf_value) { return false; }
13 
get_pio_dbg_uart_cfg(__unused uint16_t * pio_address,__unused uint32_t * nbytes)14 bool get_pio_dbg_uart_cfg(__unused uint16_t *pio_address, __unused uint32_t *nbytes) {
15 	return false;
16 }
17