repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
MAINTAINERS: Add Yuchi and Vasiliy for Intel Atom Snow Ridge SoC
[coreboot.git]
/
src
/
southbridge
/
intel
/
lynxpoint
/
uart.c
blob
95b286ebfc59b45db50b10106055e9615b6920d7
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <console/uart.h>
4
#include <types.h>
5
6
uintptr_t
uart_platform_base
(
unsigned int
idx
)
7
{
8
if
(
idx
==
CONFIG_UART_FOR_CONSOLE
)
9
return
CONFIG_CONSOLE_UART_BASE_ADDRESS
;
10
11
return
0
;
12
}