ltc4245.h (331B)
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * Platform Data for LTC4245 hardware monitor chip 4 * 5 * Copyright (c) 2010 Ira W. Snyder <iws@ovro.caltech.edu> 6 */ 7 8#ifndef LINUX_LTC4245_H 9#define LINUX_LTC4245_H 10 11#include <linux/types.h> 12 13struct ltc4245_platform_data { 14 bool use_extra_gpios; 15}; 16 17#endif /* LINUX_LTC4245_H */