repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
14 lines
348 B
C
14 lines
348 B
C
/* 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;
|