From 2d8f2455c9239f2c21e35961ca4df1cc9bc22fcf Mon Sep 17 00:00:00 2001 From: Mario Limonciello Date: Wed, 28 Feb 2018 10:06:23 -0600 Subject: [PATCH] trivial: amt: Adjust to use [] instead of () in device name This makes it more friendly to bash completion --- plugins/amt/fu-plugin-amt.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/amt/fu-plugin-amt.c b/plugins/amt/fu-plugin-amt.c index 259fb24f3..06712e0e6 100644 --- a/plugins/amt/fu-plugin-amt.c +++ b/plugins/amt/fu-plugin-amt.c @@ -435,16 +435,16 @@ fu_plugin_amt_create_device (GError **error) return NULL; switch (state) { case 0: - fu_device_set_name (dev, "Intel AMT (unprovisioned)"); + fu_device_set_name (dev, "Intel AMT [unprovisioned]"); break; case 1: - fu_device_set_name (dev, "Intel AMT (being provisioned)"); + fu_device_set_name (dev, "Intel AMT [being provisioned]"); break; case 2: - fu_device_set_name (dev, "Intel AMT (provisioned)"); + fu_device_set_name (dev, "Intel AMT [provisioned]"); break; default: - fu_device_set_name (dev, "Intel AMT (unknown)"); + fu_device_set_name (dev, "Intel AMT [unknown]"); break; } fu_device_set_summary (dev, "Hardware and firmware technology for remote "