xref: /openbmc/u-boot/board/alliedtelesis/common/gpio_hog.h (revision 326f98193e38b1f48b92a1daa90d8f46d15045a9)
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