kxsd9.h 349 B

12345678910111213
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/device.h>
  3. #include <linux/kernel.h>
  4. #define KXSD9_STATE_RX_SIZE 2
  5. #define KXSD9_STATE_TX_SIZE 2
  6. int kxsd9_common_probe(struct device *dev,
  7. struct regmap *map,
  8. const char *name);
  9. void kxsd9_common_remove(struct device *dev);
  10. extern const struct dev_pm_ops kxsd9_dev_pm_ops;