Blackfin arch: Add peripheral io API to gpio header file

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
This commit is contained in:
Sonic Zhang 2007-07-12 17:06:45 +08:00 committed by Bryan Wu
parent e745106ce3
commit 61b5956326
1 changed files with 4 additions and 0 deletions

View File

@ -210,3 +210,7 @@ struct gpio_port_t {
unsigned int port_mux;
};
int gpio_request(unsigned short gpio, const char *label);
void peripheral_free(unsigned short per);
int peripheral_request_list(unsigned short per[], const char *label);
void peripheral_free_list(unsigned short per[]);