hc
2024-08-16 62c46c9150c4afde7e5b25436263fddf79d66f0b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * AD7879/AD7889 touchscreen (bus interfaces)
 *
 * Copyright (C) 2008-2010 Michael Hennerich, Analog Devices Inc.
 */
 
#ifndef _AD7879_H_
#define _AD7879_H_
 
#include <linux/types.h>
 
struct device;
struct regmap;
 
extern const struct dev_pm_ops ad7879_pm_ops;
 
int ad7879_probe(struct device *dev, struct regmap *regmap,
        int irq, u16 bustype, u8 devid);
 
#endif