mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
d6afd6867c
Gpio support is not implemented yet. Adding it because of fdtdec. Signed-off-by: Michal Simek <monstr@monstr.eu>
41 lines
584 B
C
41 lines
584 B
C
#ifndef _ASM_MICROBLAZE_GPIO_H_
|
|
#define _ASM_MICROBLAZE_GPIO_H_
|
|
|
|
#include <asm/io.h>
|
|
|
|
static inline int gpio_request(unsigned gpio, const char *label)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_free(unsigned gpio)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_direction_input(unsigned gpio)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_direction_output(unsigned gpio, int value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_get_value(unsigned gpio)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_set_value(unsigned gpio, int value)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int gpio_is_valid(int number)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|
|
|