Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (C) 2024 Liebherr-Electronics and Drives GmbH
4 */
5#ifndef _MC33XS2410_H
6#define _MC33XS2410_H
7
8#include <linux/spi/spi.h>
9
10MODULE_IMPORT_NS("PWM_MC33XS2410");
11
12int mc33xs2410_read_reg_ctrl(struct spi_device *spi, u8 reg, u16 *val);
13int mc33xs2410_read_reg_diag(struct spi_device *spi, u8 reg, u16 *val);
14int mc33xs2410_modify_reg(struct spi_device *spi, u8 reg, u8 mask, u8 val);
15
16#endif /* _MC33XS2410_H */