Changeset 4505
- Timestamp:
- 06/28/07 11:02:12 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/branches/lm-sensors-3.0.0/prog/sensors/chips.c
r4503 r4505 27 27 #include "lib/sensors.h" 28 28 29 void print_label(const char *label, int space);30 static inline float deg_ctof( float );31 32 29 extern int fahrenheit; 33 30 extern char degstr[5]; 34 31 35 inline float deg_ctof( float cel)32 static inline float deg_ctof(float cel) 36 33 { 37 34 return ( cel * ( 9.0F / 5.0F ) + 32.0F ); … … 124 121 } 125 122 126 void print_vid_info(const sensors_chip_name *name, int f_vid, int f_vrm)127 {128 print_vid_info_real(name, f_vid, f_vrm, 10);129 }130 131 123 void print_unknown_chip(const sensors_chip_name *name) 132 124 {
