1998-12-23 00:25:53 +00:00
|
|
|
/*
|
|
|
|
chips.h - Part of sensors, a user-space program for hardware monitoring
|
1999-02-08 22:50:29 +00:00
|
|
|
Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
|
1998-12-23 00:25:53 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROG_SENSORS_CHIPS_H
|
|
|
|
#define PROG_SENSORS_CHIPS_H
|
|
|
|
|
|
|
|
#include "lib/sensors.h"
|
|
|
|
|
1998-12-24 18:40:58 +00:00
|
|
|
extern void print_unknown_chip(const sensors_chip_name *name);
|
|
|
|
|
2000-11-26 23:07:17 +00:00
|
|
|
extern void print_ds1621(const sensors_chip_name *name);
|
2000-10-18 00:34:07 +00:00
|
|
|
extern void print_mtp008(const sensors_chip_name *name);
|
1998-12-23 00:25:53 +00:00
|
|
|
extern void print_lm75(const sensors_chip_name *name);
|
1999-05-01 15:03:14 +00:00
|
|
|
extern void print_adm1021(const sensors_chip_name *name);
|
2000-05-11 02:04:30 +00:00
|
|
|
extern void print_adm1025(const sensors_chip_name *name);
|
2001-05-15 03:18:18 +00:00
|
|
|
extern void print_adm1024(const sensors_chip_name *name);
|
1999-05-01 15:28:49 +00:00
|
|
|
extern void print_adm9240(const sensors_chip_name *name);
|
1998-12-23 00:25:53 +00:00
|
|
|
extern void print_lm78(const sensors_chip_name *name);
|
1999-05-01 15:36:27 +00:00
|
|
|
extern void print_sis5595(const sensors_chip_name *name);
|
2000-03-04 16:14:08 +00:00
|
|
|
extern void print_via686a(const sensors_chip_name *name);
|
1998-12-24 20:29:29 +00:00
|
|
|
extern void print_gl518(const sensors_chip_name *name);
|
1998-12-26 02:01:59 +00:00
|
|
|
extern void print_lm80(const sensors_chip_name *name);
|
|
|
|
extern void print_w83781d(const sensors_chip_name *name);
|
1999-03-19 21:11:33 +00:00
|
|
|
extern void print_maxilife(const sensors_chip_name *name);
|
2000-01-30 01:20:51 +00:00
|
|
|
extern void print_ddcmon(const sensors_chip_name *name);
|
|
|
|
extern void print_eeprom(const sensors_chip_name *name);
|
2001-05-13 16:32:02 +00:00
|
|
|
extern void print_lm87(const sensors_chip_name *name);
|
1998-12-23 00:25:53 +00:00
|
|
|
|
|
|
|
#endif /* def PROG_SENSORS_CHIPS_H */
|