mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
In order to clearly describe the dependencies between the GPIO controller drivers and the users the driver is split up into a core, two drivers and a common header. Signed-off-by: Henning Schild <henning.schild@siemens.com> Acked-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Lee Jones <lee@kernel.org> Link: https://lore.kernel.org/r/20230524124628.32295-4-henning.schild@siemens.com
23 lines
593 B
C
23 lines
593 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Siemens SIMATIC IPC driver for GPIO based LEDs
|
|
*
|
|
* Copyright (c) Siemens AG, 2023
|
|
*
|
|
* Author:
|
|
* Henning Schild <henning.schild@siemens.com>
|
|
*/
|
|
|
|
#ifndef _SIMATIC_IPC_LEDS_GPIO_H
|
|
#define _SIMATIC_IPC_LEDS_GPIO_H
|
|
|
|
int simatic_ipc_leds_gpio_probe(struct platform_device *pdev,
|
|
struct gpiod_lookup_table *table,
|
|
struct gpiod_lookup_table *table_extra);
|
|
|
|
int simatic_ipc_leds_gpio_remove(struct platform_device *pdev,
|
|
struct gpiod_lookup_table *table,
|
|
struct gpiod_lookup_table *table_extra);
|
|
|
|
#endif /* _SIMATIC_IPC_LEDS_GPIO_H */
|