1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2017 Allied Telesis Labs 4 */ 5 6 int gpio_hog_list(struct gpio_desc *gpiod, int max_count, const char *node_name, 7 const char *gpio_name, int value); 8 9 static inline int gpio_hog(struct gpio_desc *gpiod, const char *node_name, 10 const char *gpio_name, int value) 11 { 12 return gpio_hog_list(gpiod, 1, node_name, gpio_name, value); 13 } 14