aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/devices.c
diff options
context:
space:
mode:
authorLeandro Pereira <leandro@hardinfo.org>2010-01-01 13:50:55 -0200
committerLeandro Pereira <leandro@hardinfo.org>2010-01-01 13:50:55 -0200
commite6fb48251e70d87404bf7738722679b9281ed108 (patch)
treeeeb168e65fbfde2f4b5d3d78fc79b8cd151ad11b /hardinfo2/devices.c
parent94a513ab865ccad5b87fc661076f24eb9b87f11c (diff)
Don't include benchmarks in remote mode.
Diffstat (limited to 'hardinfo2/devices.c')
-rw-r--r--hardinfo2/devices.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/hardinfo2/devices.c b/hardinfo2/devices.c
index 3ecce794..4b29f80f 100644
--- a/hardinfo2/devices.c
+++ b/hardinfo2/devices.c
@@ -65,19 +65,19 @@ void scan_dmi(gboolean reload);
void scan_device_resources(gboolean reload);
static ModuleEntry entries[] = {
- {"Processor", "processor.png", callback_processors, scan_processors},
- {"Memory", "memory.png", callback_memory, scan_memory},
- {"PCI Devices", "devices.png", callback_pci, scan_pci},
- {"USB Devices", "usb.png", callback_usb, scan_usb},
- {"Printers", "printer.png", callback_printers, scan_printers,},
- {"Battery", "battery.png", callback_battery, scan_battery},
- {"Sensors", "therm.png", callback_sensors, scan_sensors},
- {"Input Devices", "inputdevices.png", callback_input, scan_input},
- {"Storage", "hdd.png", callback_storage, scan_storage},
+ {"Processor", "processor.png", callback_processors, scan_processors, MODULE_FLAG_NONE},
+ {"Memory", "memory.png", callback_memory, scan_memory, MODULE_FLAG_NONE},
+ {"PCI Devices", "devices.png", callback_pci, scan_pci, MODULE_FLAG_NONE},
+ {"USB Devices", "usb.png", callback_usb, scan_usb, MODULE_FLAG_NONE},
+ {"Printers", "printer.png", callback_printers, scan_printers, MODULE_FLAG_NONE},
+ {"Battery", "battery.png", callback_battery, scan_battery, MODULE_FLAG_NONE},
+ {"Sensors", "therm.png", callback_sensors, scan_sensors, MODULE_FLAG_NONE},
+ {"Input Devices", "inputdevices.png", callback_input, scan_input, MODULE_FLAG_NONE},
+ {"Storage", "hdd.png", callback_storage, scan_storage, MODULE_FLAG_NONE},
#if defined(ARCH_i386) || defined(ARCH_x86_64)
- {"DMI", "computer.png", callback_dmi, scan_dmi},
+ {"DMI", "computer.png", callback_dmi, scan_dmi, MODULE_FLAG_NONE},
#endif /* x86 or x86_64 */
- {"Resources", "resources.png", callback_device_resources, scan_device_resources},
+ {"Resources", "resources.png", callback_device_resources, scan_device_resources, MODULE_FLAG_NONE},
{NULL}
};