scsi_dh: Use the correct module name when loading device handler
[cascardo/linux.git] / drivers / scsi / scsi_dh.c
index edb044a..0a2168e 100644 (file)
@@ -111,7 +111,7 @@ static struct scsi_device_handler *scsi_dh_lookup(const char *name)
 
        dh = __scsi_dh_lookup(name);
        if (!dh) {
-               request_module(name);
+               request_module("scsi_dh_%s", name);
                dh = __scsi_dh_lookup(name);
        }