swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: bebc6082da0a9f5d47a1ea2edc099bf671058bd4 authored by Linus Torvalds on 12 November 2017, 18:46:13 UTC
Linux 4.14
Tip revision: bebc608
kxsd9.h
/* SPDX-License-Identifier: GPL-2.0 */
#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 *dev,
		       struct regmap *map,
		       const char *name);
int kxsd9_common_remove(struct device *dev);

extern const struct dev_pm_ops kxsd9_dev_pm_ops;
back to top