|
@@ -7324,49 +7324,39 @@ static struct pci_driver megasas_pci_driver = {
|
|
|
/*
|
|
|
* Sysfs driver attributes
|
|
|
*/
|
|
|
-static ssize_t megasas_sysfs_show_version(struct device_driver *dd, char *buf)
|
|
|
+static ssize_t version_show(struct device_driver *dd, char *buf)
|
|
|
{
|
|
|
return snprintf(buf, strlen(MEGASAS_VERSION) + 2, "%s\n",
|
|
|
MEGASAS_VERSION);
|
|
|
}
|
|
|
+static DRIVER_ATTR_RO(version);
|
|
|
|
|
|
-static DRIVER_ATTR(version, S_IRUGO, megasas_sysfs_show_version, NULL);
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-megasas_sysfs_show_release_date(struct device_driver *dd, char *buf)
|
|
|
+static ssize_t release_date_show(struct device_driver *dd, char *buf)
|
|
|
{
|
|
|
return snprintf(buf, strlen(MEGASAS_RELDATE) + 2, "%s\n",
|
|
|
MEGASAS_RELDATE);
|
|
|
}
|
|
|
+static DRIVER_ATTR_RO(release_date);
|
|
|
|
|
|
-static DRIVER_ATTR(release_date, S_IRUGO, megasas_sysfs_show_release_date, NULL);
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-megasas_sysfs_show_support_poll_for_event(struct device_driver *dd, char *buf)
|
|
|
+static ssize_t support_poll_for_event_show(struct device_driver *dd, char *buf)
|
|
|
{
|
|
|
return sprintf(buf, "%u\n", support_poll_for_event);
|
|
|
}
|
|
|
+static DRIVER_ATTR_RO(support_poll_for_event);
|
|
|
|
|
|
-static DRIVER_ATTR(support_poll_for_event, S_IRUGO,
|
|
|
- megasas_sysfs_show_support_poll_for_event, NULL);
|
|
|
-
|
|
|
- static ssize_t
|
|
|
-megasas_sysfs_show_support_device_change(struct device_driver *dd, char *buf)
|
|
|
+static ssize_t support_device_change_show(struct device_driver *dd, char *buf)
|
|
|
{
|
|
|
return sprintf(buf, "%u\n", support_device_change);
|
|
|
}
|
|
|
+static DRIVER_ATTR_RO(support_device_change);
|
|
|
|
|
|
-static DRIVER_ATTR(support_device_change, S_IRUGO,
|
|
|
- megasas_sysfs_show_support_device_change, NULL);
|
|
|
-
|
|
|
-static ssize_t
|
|
|
-megasas_sysfs_show_dbg_lvl(struct device_driver *dd, char *buf)
|
|
|
+static ssize_t dbg_lvl_show(struct device_driver *dd, char *buf)
|
|
|
{
|
|
|
return sprintf(buf, "%u\n", megasas_dbg_lvl);
|
|
|
}
|
|
|
|
|
|
-static ssize_t
|
|
|
-megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t count)
|
|
|
+static ssize_t dbg_lvl_store(struct device_driver *dd, const char *buf,
|
|
|
+ size_t count)
|
|
|
{
|
|
|
int retval = count;
|
|
|
|
|
@@ -7376,9 +7366,7 @@ megasas_sysfs_set_dbg_lvl(struct device_driver *dd, const char *buf, size_t coun
|
|
|
}
|
|
|
return retval;
|
|
|
}
|
|
|
-
|
|
|
-static DRIVER_ATTR(dbg_lvl, S_IRUGO|S_IWUSR, megasas_sysfs_show_dbg_lvl,
|
|
|
- megasas_sysfs_set_dbg_lvl);
|
|
|
+static DRIVER_ATTR_RW(dbg_lvl);
|
|
|
|
|
|
static inline void megasas_remove_scsi_device(struct scsi_device *sdev)
|
|
|
{
|