core: use more inclusive words in logs

This commit is contained in:
Aleksander Morgado
2023-10-06 08:57:32 +00:00
parent fe0e6059ba
commit 8e81064020
3 changed files with 4 additions and 4 deletions

View File

@@ -150,7 +150,7 @@ mm_filter_port (MMFilter *self,
return TRUE;
}
/* If the device is explicitly blacklisted, we ignore every port. */
/* If the device is explicitly ignored, we ignore every port. */
if ((self->priv->enabled_rules & MM_FILTER_RULE_EXPLICIT_BLOCKLIST) &&
(mm_kernel_device_get_global_property_as_boolean (port, ID_MM_DEVICE_IGNORE))) {
mm_obj_dbg (self, "(%s/%s): port filtered: device is blocklisted", subsystem, name);

View File

@@ -995,9 +995,9 @@ mm_plugin_create_modem (MMPlugin *self,
goto next;
}
/* Ports that are explicitly blacklisted will be grabbed as ignored */
/* Ports that are explicitly ignored will be grabbed as ignored */
if (mm_port_probe_is_ignored (probe)) {
mm_obj_dbg (self, "port %s is blacklisted", name);
mm_obj_dbg (self, "port %s is explicitly ignored", name);
force_ignored = TRUE;
goto grab_port;
}

View File

@@ -1479,7 +1479,7 @@ mm_port_probe_run (MMPortProbe *self,
/* If we're told to completely ignore the port, don't do any probing */
if (self->priv->is_ignored) {
mm_obj_dbg (self, "port probing finished: skipping for blacklisted port");
mm_obj_dbg (self, "port probing finished: skipping for ignored port");
port_probe_task_return_boolean (self, TRUE);
return;
}