diff options
author | Selvin Xavier <selvin.xavier@emulex.com> | 2014-06-10 10:02:14 -0400 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2014-08-01 18:07:36 -0400 |
commit | 4808b184fd54d64995046b83864809536a058e7a (patch) | |
tree | 8b56bf8f8833abedfbd0aa05f3b1eac94f4c8c30 | |
parent | 31dbdd9af58c63c7f8376a0fa680f5fc1b6cce98 (diff) |
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: Selvin Xavier <selvin.xavier@emulex.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
-rw-r--r-- | drivers/infiniband/hw/ocrdma/ocrdma_main.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/drivers/infiniband/hw/ocrdma/ocrdma_main.c b/drivers/infiniband/hw/ocrdma/ocrdma_main.c index 9368d52888bb..227a5422db0b 100644 --- a/drivers/infiniband/hw/ocrdma/ocrdma_main.c +++ b/drivers/infiniband/hw/ocrdma/ocrdma_main.c | |||
@@ -353,15 +353,25 @@ static ssize_t show_fw_ver(struct device *device, struct device_attribute *attr, | |||
353 | { | 353 | { |
354 | struct ocrdma_dev *dev = dev_get_drvdata(device); | 354 | struct ocrdma_dev *dev = dev_get_drvdata(device); |
355 | 355 | ||
356 | return scnprintf(buf, PAGE_SIZE, "%s", &dev->attr.fw_ver[0]); | 356 | return scnprintf(buf, PAGE_SIZE, "%s\n", &dev->attr.fw_ver[0]); |
357 | } | ||
358 | |||
359 | static ssize_t show_hca_type(struct device *device, | ||
360 | struct device_attribute *attr, char *buf) | ||
361 | { | ||
362 | struct ocrdma_dev *dev = dev_get_drvdata(device); | ||
363 | |||
364 | return scnprintf(buf, PAGE_SIZE, "%s\n", &dev->model_number[0]); | ||
357 | } | 365 | } |
358 | 366 | ||
359 | static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL); | 367 | static DEVICE_ATTR(hw_rev, S_IRUGO, show_rev, NULL); |
360 | static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL); | 368 | static DEVICE_ATTR(fw_ver, S_IRUGO, show_fw_ver, NULL); |
369 | static DEVICE_ATTR(hca_type, S_IRUGO, show_hca_type, NULL); | ||
361 | 370 | ||
362 | static struct device_attribute *ocrdma_attributes[] = { | 371 | static struct device_attribute *ocrdma_attributes[] = { |
363 | &dev_attr_hw_rev, | 372 | &dev_attr_hw_rev, |
364 | &dev_attr_fw_ver | 373 | &dev_attr_fw_ver, |
374 | &dev_attr_hca_type | ||
365 | }; | 375 | }; |
366 | 376 | ||
367 | static void ocrdma_remove_sysfiles(struct ocrdma_dev *dev) | 377 | static void ocrdma_remove_sysfiles(struct ocrdma_dev *dev) |