xref: /linux/drivers/platform/x86/siemens/simatic-ipc-batt.h (revision bf5802238dc181b1f7375d358af1d01cd72d1c11)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Siemens SIMATIC IPC driver for CMOS battery monitoring
4  *
5  * Copyright (c) Siemens AG, 2023
6  *
7  * Author:
8  *  Henning Schild <henning.schild@siemens.com>
9  */
10 
11 #ifndef _SIMATIC_IPC_BATT_H
12 #define _SIMATIC_IPC_BATT_H
13 
14 int simatic_ipc_batt_probe(struct platform_device *pdev,
15 			   struct gpiod_lookup_table *table);
16 
17 void simatic_ipc_batt_remove(struct platform_device *pdev,
18 			     struct gpiod_lookup_table *table);
19 
20 #endif /* _SIMATIC_IPC_BATT_H */
21