0d1fb2d52d
This converts the KXSD9 driver to drop the custom transport mechanism and just use regmap like everything else. Tested-by: Jonathan Cameron <jic23@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
11 lines
265 B
C
11 lines
265 B
C
#include <linux/device.h>
|
|
#include <linux/kernel.h>
|
|
|
|
#define KXSD9_STATE_RX_SIZE 2
|
|
#define KXSD9_STATE_TX_SIZE 2
|
|
|
|
int kxsd9_common_probe(struct device *parent,
|
|
struct regmap *map,
|
|
const char *name);
|
|
int kxsd9_common_remove(struct device *parent);
|