From 8a706b470aa6c290d8c45d2b0b68694f520f842c Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Tue, 7 Jun 2022 19:09:01 +0100 Subject: [PATCH] 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. --- plugins/scsi/fu-scsi-device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plugins/scsi/fu-scsi-device.c b/plugins/scsi/fu-scsi-device.c index 7bd14010b..9bf4b4274 100644 --- a/plugins/scsi/fu-scsi-device.c +++ b/plugins/scsi/fu-scsi-device.c @@ -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,