root/lm-sensors/trunk/prog/sensors/chips.h @ 742

Revision 742, 1.7 KB (checked in by mds, 13 years ago)

(mds) Add via686a integrated sensors support. Untested.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[104]1/*
2    chips.h - Part of sensors, a user-space program for hardware monitoring
[207]3    Copyright (c) 1998, 1999  Frodo Looijaard <frodol@dds.nl>
[104]4
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 2 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program; if not, write to the Free Software
17    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20#ifndef PROG_SENSORS_CHIPS_H
21#define PROG_SENSORS_CHIPS_H
22
23#include "lib/sensors.h"
24
[110]25extern void print_unknown_chip(const sensors_chip_name *name);
26
[104]27extern void print_lm75(const sensors_chip_name *name);
[436]28extern void print_adm1021(const sensors_chip_name *name);
[437]29extern void print_adm9240(const sensors_chip_name *name);
[104]30extern void print_lm78(const sensors_chip_name *name);
[438]31extern void print_sis5595(const sensors_chip_name *name);
[742]32extern void print_via686a(const sensors_chip_name *name);
[111]33extern void print_gl518(const sensors_chip_name *name);
[123]34extern void print_lm80(const sensors_chip_name *name);
35extern void print_w83781d(const sensors_chip_name *name);
[327]36extern void print_maxilife(const sensors_chip_name *name);
[716]37extern void print_ddcmon(const sensors_chip_name *name);
38extern void print_eeprom(const sensors_chip_name *name);
[104]39
40#endif /* def PROG_SENSORS_CHIPS_H */
Note: See TracBrowser for help on using the browser.