mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-07-24 01:54:03 -04:00
With more files around move everything to a subdirectory. Users will only see the several options once they enable the main one. Suggested-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Henning Schild <henning.schild@siemens.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20230719153518.13073-4-henning.schild@siemens.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
20 lines
494 B
C
20 lines
494 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Siemens SIMATIC IPC driver for CMOS battery monitoring
|
|
*
|
|
* Copyright (c) Siemens AG, 2023
|
|
*
|
|
* Author:
|
|
* Henning Schild <henning.schild@siemens.com>
|
|
*/
|
|
|
|
#ifndef _SIMATIC_IPC_BATT_H
|
|
#define _SIMATIC_IPC_BATT_H
|
|
|
|
int simatic_ipc_batt_probe(struct platform_device *pdev,
|
|
struct gpiod_lookup_table *table);
|
|
|
|
int simatic_ipc_batt_remove(struct platform_device *pdev,
|
|
struct gpiod_lookup_table *table);
|
|
|
|
#endif /* _SIMATIC_IPC_BATT_H */
|