21 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Siemens SIMATIC IPC driver for CMOS battery monitoring4 *5 * Copyright (c) Siemens AG, 20236 *7 * Author:8 * Henning Schild <henning.schild@siemens.com>9 */10 11#ifndef _SIMATIC_IPC_BATT_H12#define _SIMATIC_IPC_BATT_H13 14int simatic_ipc_batt_probe(struct platform_device *pdev,15 struct gpiod_lookup_table *table);16 17void simatic_ipc_batt_remove(struct platform_device *pdev,18 struct gpiod_lookup_table *table);19 20#endif /* _SIMATIC_IPC_BATT_H */21