/drivers/input/touchscreen/ad7879.h

http://github.com/mirrors/linux · C Header · 21 lines · 9 code · 6 blank · 6 comment · 0 complexity · ae6b769651f5e9c56e96684fd639c7d5 MD5 · raw file

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