]> Git Repo - J-linux.git/blob - include/linux/gpio/aspeed.h
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / include / linux / gpio / aspeed.h
1 #ifndef __GPIO_ASPEED_H
2 #define __GPIO_ASPEED_H
3
4 #include <linux/types.h>
5
6 struct gpio_desc;
7
8 struct aspeed_gpio_copro_ops {
9         int (*request_access)(void *data);
10         int (*release_access)(void *data);
11 };
12
13 int aspeed_gpio_copro_grab_gpio(struct gpio_desc *desc,
14                                 u16 *vreg_offset, u16 *dreg_offset, u8 *bit);
15 int aspeed_gpio_copro_release_gpio(struct gpio_desc *desc);
16 int aspeed_gpio_copro_set_ops(const struct aspeed_gpio_copro_ops *ops, void *data);
17
18
19 #endif /* __GPIO_ASPEED_H */
This page took 0.027956 seconds and 4 git commands to generate.