rm3100.h 476 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2018 Song Qiang <[email protected]>
  4. */
  5. #ifndef RM3100_CORE_H
  6. #define RM3100_CORE_H
  7. #include <linux/regmap.h>
  8. extern const struct regmap_access_table rm3100_readable_table;
  9. extern const struct regmap_access_table rm3100_writable_table;
  10. extern const struct regmap_access_table rm3100_volatile_table;
  11. int rm3100_common_probe(struct device *dev, struct regmap *regmap, int irq);
  12. #endif /* RM3100_CORE_H */