Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4808b184 authored by Selvin Xavier's avatar Selvin Xavier Committed by Roland Dreier
Browse files

RDMA/ocrdma: Add hca_type and fixing fw_version string in device atrributes



Add a new entry under sysfs for getting the HW type.
Add a new-line character for the FW version string

Signed-off-by: default avatarSelvin Xavier <selvin.xavier@emulex.com>
Signed-off-by: default avatarRoland Dreier <roland@purestorage.com>
parent 31dbdd9a
Loading
Loading
Loading
Loading
+12 −2
Original line number Original line Diff line number Diff line
@@ -353,15 +353,25 @@ static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr,
{
{
	struct ocrdma_dev *dev = dev_get_drvdata(device);
	struct ocrdma_dev *dev = dev_get_drvdata(device);


	return scnprintf(buf, PAGE_SIZE, "%s", &dev->attr.fw_ver[0]);
	return scnprintf(buf, PAGE_SIZE, "%s\n", &dev->attr.fw_ver[0]);
}

static ssize_t show_hca_type(struct device *device,
			     struct device_attribute *attr, char *buf)
{
	struct ocrdma_dev *dev = dev_get_drvdata(device);

	return scnprintf(buf, PAGE_SIZE, "%s\n", &dev->model_number[0]);
}
}


static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL);
static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL);
static DEVICE_ATTR(hca_type, S_IRUGO, show_hca_type, NULL);


static struct device_attribute *ocrdma_attributes[] = {
static struct device_attribute *ocrdma_attributes[] = {
	&dev_attr_hw_rev,
	&dev_attr_hw_rev,
	&dev_attr_fw_ver
	&dev_attr_fw_ver,
	&dev_attr_hca_type
};
};


static void ocrdma_remove_sysfiles(struct ocrdma_dev *dev)
static void ocrdma_remove_sysfiles(struct ocrdma_dev *dev)