/* SPDX-License-Identifier: GPL-2.0 */ #ifndef LINUX_SPI_MAX7301_H #define LINUX_SPI_MAX7301_H #include <linux/gpio/driver.h> /* * Some registers must be read back to modify. * To save time we cache them here in memory */ struct max7301 { … }; struct max7301_platform_data { … }; extern void __max730x_remove(struct device *dev); extern int __max730x_probe(struct max7301 *ts); #endif