unsigned int nwords, u32 *data, int byte_oriented);
 int t3_load_fw(struct adapter *adapter, const u8 * fw_data, unsigned int size);
 int t3_get_fw_version(struct adapter *adapter, u32 *vers);
-int t3_check_fw_version(struct adapter *adapter);
+int t3_check_fw_version(struct adapter *adapter, int *must_load);
 int t3_init_hw(struct adapter *adapter, u32 fw_params);
 void mac_prep(struct cmac *mac, struct adapter *adapter, int index);
 void early_hw_init(struct adapter *adapter, const struct adapter_info *ai);
 
 /**
  *     t3_check_fw_version - check if the FW is compatible with this driver
  *     @adapter: the adapter
- *
+ *     @must_load: set to 1 if loading a new FW image is required
+
  *     Checks if an adapter's FW is compatible with the driver.  Returns 0
  *     if the versions are compatible, a negative error otherwise.
  */
-int t3_check_fw_version(struct adapter *adapter)
+int t3_check_fw_version(struct adapter *adapter, int *must_load)
 {
        int ret;
        u32 vers;
        unsigned int type, major, minor;
 
+       *must_load = 1;
        ret = t3_get_fw_version(adapter, &vers);
        if (ret)
                return ret;
            minor == FW_VERSION_MINOR)
                return 0;
 
-       CH_ERR(adapter, "found wrong FW version(%u.%u), "
-              "driver needs version %u.%u\n", major, minor,
-              FW_VERSION_MAJOR, FW_VERSION_MINOR);
+       if (major != FW_VERSION_MAJOR)
+               CH_ERR(adapter, "found wrong FW version(%u.%u), "
+                      "driver needs version %u.%u\n", major, minor,
+                      FW_VERSION_MAJOR, FW_VERSION_MINOR);
+       else {
+               *must_load = 0;
+               CH_WARN(adapter, "found wrong FW minor version(%u.%u), "
+                       "driver compiled for version %u.%u\n", major, minor,
+                       FW_VERSION_MAJOR, FW_VERSION_MINOR);
+       }
+
        return -EINVAL;
 }