mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-04 04:37:39 -04:00
This was used only to allow the s5m RTC driver to deal with the alarm IRQ. That driver now uses a different approach to acquire that IRQ, and ::irq_data doesn't need to be kept around anymore. Signed-off-by: André Draszik <andre.draszik@linaro.org> Link: https://patch.msgid.link/20260113-s5m-alarm-v3-3-855a19db1277@linaro.org Signed-off-by: Lee Jones <lee@kernel.org>
24 lines
610 B
C
24 lines
610 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright 2012 Samsung Electronics Co., Ltd
|
|
* http://www.samsung.com
|
|
* Copyright 2025 Linaro Ltd.
|
|
*
|
|
* Samsung SxM core driver internal data
|
|
*/
|
|
|
|
#ifndef __SEC_CORE_INT_H
|
|
#define __SEC_CORE_INT_H
|
|
|
|
struct i2c_client;
|
|
|
|
extern const struct dev_pm_ops sec_pmic_pm_ops;
|
|
|
|
int sec_pmic_probe(struct device *dev, int device_type, unsigned int irq,
|
|
struct regmap *regmap, struct i2c_client *client);
|
|
void sec_pmic_shutdown(struct device *dev);
|
|
|
|
struct regmap_irq_chip_data *sec_irq_init(struct sec_pmic_dev *sec_pmic);
|
|
|
|
#endif /* __SEC_CORE_INT_H */
|