Skip to content
Snippets Groups Projects
Commit 9762a415 authored by Simon Glass's avatar Simon Glass
Browse files

dm: zynq: Remove inline gpio functions


These functions serve no useful purpose, and conflict with the generic API.
Drop them.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent b0265d56
No related branches found
No related tags found
No related merge requests found
......@@ -7,19 +7,4 @@
#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 */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment