mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 19:57:42 +01:00
20 lines
349 B
C
20 lines
349 B
C
|
/*
|
||
|
* Copyright 2012-2015, Haiku, Inc.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors
|
||
|
* Alexander von Gluck IV, kallisti5@unixzen.com
|
||
|
*/
|
||
|
#ifndef __FDT_SERIAL_H
|
||
|
#define __FDT_SERIAL_H
|
||
|
|
||
|
|
||
|
#include <KernelExport.h>
|
||
|
#include <arch/generic/debug_uart.h>
|
||
|
|
||
|
|
||
|
DebugUART * debug_uart_from_fdt(const void *fdt);
|
||
|
|
||
|
|
||
|
#endif /*__FDT_SERIAL_H*/
|