mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
84515165da
GPIO dummy routines are required for fdt build, may be removed these dependencies once the u-boot fdt is fully optimized. Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
25 lines
349 B
C
25 lines
349 B
C
/*
|
|
* Copyright (c) 2013 Xilinx, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ZYNQ_GPIO_H
|
|
#define _ZYNQ_GPIO_H
|
|
|
|
inline int gpio_get_value(unsigned gpio)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
inline int gpio_set_value(unsigned gpio, int val)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
inline int gpio_request(unsigned gpio, const char *label)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif /* _ZYNQ_GPIO_H */
|