Commit 68a97feb authored by Xuezhi Zhang's avatar Xuezhi Zhang Committed by Martin K. Petersen
Browse files

scsi: megaraid: Convert sysfs snprintf() to sysfs_emit()

parent 59f4e39d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}