uart: The uart.h header file uses uint32_t without including stdint.h.
Make it include stdint.h instead of relying on that file having already been included by something else. BUG=None TEST=Built for link, lumpy, nyan, pit. BRANCH=None Change-Id: Ia09abc890a5f6b12318aa4ae0897aa8a0baf3b13 Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-on: https://chromium-review.googlesource.com/171335 Reviewed-by: Ronald Minnich <rminnich@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Commit-Queue: Gabe Black <gabeblack@chromium.org>
This commit is contained in:
parent
ae7d4d890b
commit
d3045f3932
1 changed files with 2 additions and 0 deletions
|
|
@ -26,6 +26,8 @@
|
|||
#ifndef UART_H
|
||||
#define UART_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#if CONFIG_CONSOLE_SERIAL8250 || CONFIG_CONSOLE_SERIAL8250MEM
|
||||
#include <uart8250.h>
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue