scsi: megaraid: Convert sysfs snprintf() to sysfs_emit()
Fix up sysfs show entries to use sysfs_emit() Link: https://lore.kernel.org/r/20220831140325.396295-1-zhangxuezhi3@gmail.com Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com> Signed-off-by: Xuezhi Zhang <zhangxuezhi1@coolpad.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
Родитель
59f4e39d35
Коммит
68a97feb4b
|
@ -3979,7 +3979,7 @@ megaraid_mbox_app_hndl_show(struct device *dev, struct device_attribute *attr, c
|
|||
|
||||
app_hndl = mraid_mm_adapter_app_handle(adapter->unique_id);
|
||||
|
||||
return snprintf(buf, 8, "%u\n", app_hndl);
|
||||
return sysfs_emit(buf, "%u\n", app_hndl);
|
||||
}
|
||||
|
||||
|
||||
|
@ -4048,7 +4048,7 @@ megaraid_mbox_ld_show(struct device *dev, struct device_attribute *attr, char *b
|
|||
}
|
||||
}
|
||||
|
||||
return snprintf(buf, 36, "%d %d %d %d\n", scsi_id, logical_drv,
|
||||
return sysfs_emit(buf, "%d %d %d %d\n", scsi_id, logical_drv,
|
||||
ldid_map, app_hndl);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче