static DEVICE_ATTR_WO(run_test);
 
-/*
- * Reload the IFS image. When user wants to install new IFS image
- */
-static ssize_t reload_store(struct device *dev,
-                           struct device_attribute *attr,
-                           const char *buf, size_t count)
-{
-       struct ifs_data *ifsd = ifs_get_data(dev);
-       bool res;
-
-
-       if (kstrtobool(buf, &res))
-               return -EINVAL;
-       if (!res)
-               return count;
-
-       if (down_interruptible(&ifs_sem))
-               return -EINTR;
-
-       ifs_load_firmware(dev);
-
-       up(&ifs_sem);
-
-       return ifsd->loaded ? count : -ENODEV;
-}
-
-static DEVICE_ATTR_WO(reload);
-
 /*
  * Display currently loaded IFS image version.
  */
        &dev_attr_details.attr,
        &dev_attr_status.attr,
        &dev_attr_run_test.attr,
-       &dev_attr_reload.attr,
        &dev_attr_image_version.attr,
        NULL
 };