From e6fb48251e70d87404bf7738722679b9281ed108 Mon Sep 17 00:00:00 2001 From: Leandro Pereira Date: Fri, 1 Jan 2010 13:50:55 -0200 Subject: Don't include benchmarks in remote mode. --- hardinfo2/devices.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'hardinfo2/devices.c') 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} }; -- cgit v1.2.3