gpiolib-cdev.h 284 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef GPIOLIB_CDEV_H
  3. #define GPIOLIB_CDEV_H
  4. #include <linux/types.h>
  5. struct gpio_device;
  6. int gpiolib_cdev_register(struct gpio_device *gdev, dev_t devt);
  7. void gpiolib_cdev_unregister(struct gpio_device *gdev);
  8. #endif /* GPIOLIB_CDEV_H */