simatic-ipc-leds-gpio.h 599 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Siemens SIMATIC IPC driver for GPIO based LEDs
  4. *
  5. * Copyright (c) Siemens AG, 2023
  6. *
  7. * Author:
  8. * Henning Schild <henning.schild@siemens.com>
  9. */
  10. #ifndef _SIMATIC_IPC_LEDS_GPIO_H
  11. #define _SIMATIC_IPC_LEDS_GPIO_H
  12. int simatic_ipc_leds_gpio_probe(struct platform_device *pdev,
  13. struct gpiod_lookup_table *table,
  14. struct gpiod_lookup_table *table_extra);
  15. void simatic_ipc_leds_gpio_remove(struct platform_device *pdev,
  16. struct gpiod_lookup_table *table,
  17. struct gpiod_lookup_table *table_extra);
  18. #endif /* _SIMATIC_IPC_LEDS_GPIO_H */