Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Walleij | bf96f6e | 2016-09-01 11:44:38 +0200 | [diff] [blame] | 2 | #include <linux/device.h> |
| 3 | #include <linux/kernel.h> |
| 4 | |
| 5 | #define KXSD9_STATE_RX_SIZE 2 |
| 6 | #define KXSD9_STATE_TX_SIZE 2 |
| 7 | |
Linus Walleij | 79383aa | 2016-09-01 11:44:47 +0200 | [diff] [blame] | 8 | int kxsd9_common_probe(struct device *dev, |
Linus Walleij | 0d1fb2d | 2016-09-01 11:44:40 +0200 | [diff] [blame] | 9 | struct regmap *map, |
Linus Walleij | bf96f6e | 2016-09-01 11:44:38 +0200 | [diff] [blame] | 10 | const char *name); |
Linus Walleij | 79383aa | 2016-09-01 11:44:47 +0200 | [diff] [blame] | 11 | int kxsd9_common_remove(struct device *dev); |
Linus Walleij | 9a9a369 | 2016-09-01 11:44:48 +0200 | [diff] [blame] | 12 | |
| 13 | extern const struct dev_pm_ops kxsd9_dev_pm_ops; |