mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
18 lines
320 B
C
18 lines
320 B
C
|
/*
|
||
|
* board.h
|
||
|
*
|
||
|
* TI AM437x boards information header
|
||
|
* Derived from AM335x board.
|
||
|
*
|
||
|
* Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#ifndef _BOARD_H_
|
||
|
#define _BOARD_H_
|
||
|
|
||
|
void enable_uart0_pin_mux(void);
|
||
|
void enable_board_pin_mux(void);
|
||
|
#endif
|