unsigned int module_power_mW;
        unsigned int module_t_start_up;
        unsigned int module_t_wait;
+
+       bool have_a2;
        bool tx_fault_ignore;
 
        const struct sfp_quirk *quirk;
 
 static int sfp_hwmon_insert(struct sfp *sfp)
 {
-       if (sfp->id.ext.sff8472_compliance == SFP_SFF8472_COMPLIANCE_NONE)
-               return 0;
-
-       if (!(sfp->id.ext.diagmon & SFP_DIAGMON_DDM))
-               return 0;
-
-       if (sfp->id.ext.diagmon & SFP_DIAGMON_ADDRMODE)
-               /* This driver in general does not support address
-                * change.
-                */
-               return 0;
-
-       mod_delayed_work(system_wq, &sfp->hwmon_probe, 1);
-       sfp->hwmon_tries = R_PROBE_RETRY_SLOW;
+       if (sfp->have_a2 && sfp->id.ext.diagmon & SFP_DIAGMON_DDM) {
+               mod_delayed_work(system_wq, &sfp->hwmon_probe, 1);
+               sfp->hwmon_tries = R_PROBE_RETRY_SLOW;
+       }
 
        return 0;
 }
        return 0;
 }
 
+static int sfp_module_parse_sff8472(struct sfp *sfp)
+{
+       /* If the module requires address swap mode, warn about it */
+       if (sfp->id.ext.diagmon & SFP_DIAGMON_ADDRMODE)
+               dev_warn(sfp->dev,
+                        "module address swap to access page 0xA2 is not supported.\n");
+       else
+               sfp->have_a2 = true;
+
+       return 0;
+}
+
 static int sfp_sm_mod_probe(struct sfp *sfp, bool report)
 {
        /* SFP module inserted - read I2C data */
                return -EINVAL;
        }
 
-       /* If the module requires address swap mode, warn about it */
-       if (sfp->id.ext.diagmon & SFP_DIAGMON_ADDRMODE)
-               dev_warn(sfp->dev,
-                        "module address swap to access page 0xA2 is not supported.\n");
+       if (sfp->id.ext.sff8472_compliance != SFP_SFF8472_COMPLIANCE_NONE) {
+               ret = sfp_module_parse_sff8472(sfp);
+               if (ret < 0)
+                       return ret;
+       }
 
        /* Parse the module power requirement */
        ret = sfp_module_parse_power(sfp);
 
        memset(&sfp->id, 0, sizeof(sfp->id));
        sfp->module_power_mW = 0;
+       sfp->have_a2 = false;
 
        dev_info(sfp->dev, "module removed\n");
 }