Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.1 13 lines 349 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 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 8int kxsd9_common_probe(struct device *dev, 9 struct regmap *map, 10 const char *name); 11void kxsd9_common_remove(struct device *dev); 12 13extern const struct dev_pm_ops kxsd9_dev_pm_ops;