static char *temperature_file = "apple_sensors/temperature-%s.rrd";
static char *fanspeed_file = "apple_sensors/fanspeed-%s.rrd";
-static char *voltage_file = "apple_sensors/temperature-%s.rrd";
static char *ds_def[] =
{
as_write (host, inst, val, fanspeed_file);
}
-static void voltage_write (char *host, char *inst, char *val)
-{
- as_write (host, inst, val, voltage_file);
-}
-
#if IOKIT_HAVE_READ
static void as_submit (char *type, char *inst, double value)
{
}
else if (strcmp (type, "voltage") == 0)
{
- value_double = ((double) value_int) / 65536.0;
- strncpy (type, "apple_voltage", 128);
+ /* Leave this to the battery plugin. */
+ continue;
}
else
{
plugin_register (MODULE_NAME, as_init, as_read, NULL);
plugin_register ("apple_temperature", NULL, NULL, temperature_write);
plugin_register ("apple_fanspeed", NULL, NULL, fanspeed_write);
- plugin_register ("apple_voltage", NULL, NULL, voltage_write);
}
#undef MODULE_NAME