blob: 47ae5c9d1e90a6a80fb8867cf5e2f8a1cb913a7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __LINUX_MFD_ROHM_PWRBUTTON_H__
#define __LINUX_MFD_ROHM_PWRBUTTON_H__
struct device;
struct irq_domain;
int rohm_register_pwrbutton(struct device *dev, int irq, const char *name,
bool wakeup, struct irq_domain *irq_domain);
#endif /* __LINUX_MFD_ROHM_PWRBUTTON_H__ */
|