mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-27 06:50:37 +00:00

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
|