mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 09:34:12 +08:00
d12b7d6ede
ENS160 supports a deep sleep mode for minimal power consumption. Use it to add PM sleep capability to the driver. Signed-off-by: Gustavo Silva <gustavograzs@gmail.com> Link: https://lore.kernel.org/r/20240604225747.7212-6-gustavograzs@gmail.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
11 lines
235 B
C
11 lines
235 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ENS160_H_
|
|
#define ENS160_H_
|
|
|
|
int devm_ens160_core_probe(struct device *dev, struct regmap *regmap, int irq,
|
|
const char *name);
|
|
|
|
extern const struct dev_pm_ops ens160_pm_ops;
|
|
|
|
#endif
|