summaryrefslogtreecommitdiffstats
path: root/arch/arm/include/asm/arch-zynq/gpio.h
blob: 2dbba756d737f6674ed050edad6bd212ffefb65b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * 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 */
OpenPOWER on IntegriCloud