Contributors: 13
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Mathias Nyman |
60 |
22.64% |
2 |
6.67% |
Mika Westerberg |
59 |
22.26% |
6 |
20.00% |
Andy Shevchenko |
55 |
20.75% |
5 |
16.67% |
Linus Walleij |
35 |
13.21% |
5 |
16.67% |
David Brownell |
15 |
5.66% |
2 |
6.67% |
Rojhalat Ibrahim |
14 |
5.28% |
1 |
3.33% |
Jani Nikula |
7 |
2.64% |
1 |
3.33% |
Alexandre Courbot |
6 |
2.26% |
3 |
10.00% |
Anton Vorontsov |
4 |
1.51% |
1 |
3.33% |
Dmitry Torokhov |
4 |
1.51% |
1 |
3.33% |
Marc Zyngier |
2 |
0.75% |
1 |
3.33% |
Rafael J. Wysocki |
2 |
0.75% |
1 |
3.33% |
Stephen Rothwell |
2 |
0.75% |
1 |
3.33% |
Total |
265 |
|
30 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* ACPI helpers for GPIO API
*
* Copyright (C) 2012,2019 Intel Corporation
*/
#ifndef GPIOLIB_ACPI_H
#define GPIOLIB_ACPI_H
#include <linux/err.h>
#include <linux/errno.h>
#include <linux/types.h>
#include <linux/gpio/consumer.h>
struct device;
struct fwnode_handle;
struct gpio_chip;
struct gpio_desc;
struct gpio_device;
#ifdef CONFIG_ACPI
void acpi_gpiochip_add(struct gpio_chip *chip);
void acpi_gpiochip_remove(struct gpio_chip *chip);
void acpi_gpio_dev_init(struct gpio_chip *gc, struct gpio_device *gdev);
void acpi_gpiochip_request_interrupts(struct gpio_chip *chip);
void acpi_gpiochip_free_interrupts(struct gpio_chip *chip);
struct gpio_desc *acpi_find_gpio(struct fwnode_handle *fwnode,
const char *con_id,
unsigned int idx,
enum gpiod_flags *dflags,
unsigned long *lookupflags);
int acpi_gpio_count(struct device *dev, const char *con_id);
#else
static inline void acpi_gpiochip_add(struct gpio_chip *chip) { }
static inline void acpi_gpiochip_remove(struct gpio_chip *chip) { }
static inline void acpi_gpio_dev_init(struct gpio_chip *gc, struct gpio_device *gdev) { }
static inline void
acpi_gpiochip_request_interrupts(struct gpio_chip *chip) { }
static inline void
acpi_gpiochip_free_interrupts(struct gpio_chip *chip) { }
static inline struct gpio_desc *
acpi_find_gpio(struct fwnode_handle *fwnode, const char *con_id,
unsigned int idx, enum gpiod_flags *dflags,
unsigned long *lookupflags)
{
return ERR_PTR(-ENOENT);
}
static inline int acpi_gpio_count(struct device *dev, const char *con_id)
{
return -ENODEV;
}
#endif
#endif /* GPIOLIB_ACPI_H */