diff options
Diffstat (limited to 'drivers/base')
| -rw-r--r-- | drivers/base/core.c | 16 | ||||
| -rw-r--r-- | drivers/base/node.c | 4 |
2 files changed, 18 insertions, 2 deletions
diff --git a/drivers/base/core.c b/drivers/base/core.c index 72eccae4904b..ee0a51a3a41d 100644 --- a/drivers/base/core.c +++ b/drivers/base/core.c | |||
| @@ -760,6 +760,22 @@ static void device_remove_class_symlinks(struct device *dev) | |||
| 760 | } | 760 | } |
| 761 | 761 | ||
| 762 | /** | 762 | /** |
| 763 | * dev_set_name - set a device name | ||
| 764 | * @dev: device | ||
| 765 | * @fmt: format string for the device's name | ||
| 766 | */ | ||
| 767 | int dev_set_name(struct device *dev, const char *fmt, ...) | ||
| 768 | { | ||
| 769 | va_list vargs; | ||
| 770 | |||
| 771 | va_start(vargs, fmt); | ||
| 772 | vsnprintf(dev->bus_id, sizeof(dev->bus_id), fmt, vargs); | ||
| 773 | va_end(vargs); | ||
| 774 | return 0; | ||
| 775 | } | ||
| 776 | EXPORT_SYMBOL_GPL(dev_set_name); | ||
| 777 | |||
| 778 | /** | ||
| 763 | * device_add - add device to device hierarchy. | 779 | * device_add - add device to device hierarchy. |
| 764 | * @dev: device. | 780 | * @dev: device. |
| 765 | * | 781 | * |
diff --git a/drivers/base/node.c b/drivers/base/node.c index 39f3d1b3a213..0f867a083338 100644 --- a/drivers/base/node.c +++ b/drivers/base/node.c | |||
| @@ -84,8 +84,8 @@ static ssize_t node_read_meminfo(struct sys_device * dev, char * buf) | |||
| 84 | nid, K(i.totalram), | 84 | nid, K(i.totalram), |
| 85 | nid, K(i.freeram), | 85 | nid, K(i.freeram), |
| 86 | nid, K(i.totalram - i.freeram), | 86 | nid, K(i.totalram - i.freeram), |
| 87 | nid, node_page_state(nid, NR_ACTIVE), | 87 | nid, K(node_page_state(nid, NR_ACTIVE)), |
| 88 | nid, node_page_state(nid, NR_INACTIVE), | 88 | nid, K(node_page_state(nid, NR_INACTIVE)), |
| 89 | #ifdef CONFIG_HIGHMEM | 89 | #ifdef CONFIG_HIGHMEM |
| 90 | nid, K(i.totalhigh), | 90 | nid, K(i.totalhigh), |
| 91 | nid, K(i.freehigh), | 91 | nid, K(i.freehigh), |
