mma7455.h 569 B

1234567891011121314151617181920
  1. /*
  2. * IIO accel driver for Freescale MMA7455L 3-axis 10-bit accelerometer
  3. * Copyright 2015 Joachim Eastwood <manabian@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __MMA7455_H
  10. #define __MMA7455_H
  11. extern const struct regmap_config mma7455_core_regmap;
  12. int mma7455_core_probe(struct device *dev, struct regmap *regmap,
  13. const char *name);
  14. int mma7455_core_remove(struct device *dev);
  15. #endif