scsi: Call the ->probe superclass

I don't *think* it's going to add anything remarkable, but it's good to
match the other plugins.
This commit is contained in:
Richard Hughes 2022-06-07 19:09:01 +01:00
parent 79cbdd9395
commit 8a706b470a

View File

@ -48,6 +48,10 @@ fu_scsi_device_probe(FuDevice *device, GError **error)
g_autoptr(FuUdevDevice) ufshci_parent = NULL;
const gchar *subsystem_parents[] = {"pci", "platform", NULL};
/* FuUdevDevice->probe */
if (!FU_DEVICE_CLASS(fu_scsi_device_parent_class)->probe(device, error))
return FALSE;
/* check is valid */
if (g_strcmp0(g_udev_device_get_devtype(udev_device), "disk") != 0) {
g_set_error(error,