Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.9-rc5 11 lines 264 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef GPIOLIB_CDEV_H 4#define GPIOLIB_CDEV_H 5 6#include <linux/device.h> 7 8int gpiolib_cdev_register(struct gpio_device *gdev, dev_t devt); 9void gpiolib_cdev_unregister(struct gpio_device *gdev); 10 11#endif /* GPIOLIB_CDEV_H */