brintos

brintos / linux-shallow public Read only

0
0
Text · 284 B · b42644c Raw
14 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2 3#ifndef GPIOLIB_CDEV_H4#define GPIOLIB_CDEV_H5 6#include <linux/types.h>7 8struct gpio_device;9 10int gpiolib_cdev_register(struct gpio_device *gdev, dev_t devt);11void gpiolib_cdev_unregister(struct gpio_device *gdev);12 13#endif /* GPIOLIB_CDEV_H */14