projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ddd3a3
)
Revert "memory-hotplug: add 0x prefix to HEX block_size_bytes"
author
Linus Torvalds
<
[email protected]
>
Fri, 9 Apr 2010 17:05:33 +0000
(10:05 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 9 Apr 2010 17:05:33 +0000
(10:05 -0700)
This reverts commit
ba168fc37dea145deeb8fa9e7e71c748d2e00d74
.
It changes user-visible sysfs interfaces, and breaks some existing user
space applications which apparently rely on the fact that the output
does not contain the "0x" prefix.
Requested-by: Heiko Carstens <
[email protected]
>
Acked-by: KOSAKI Motohiro <
[email protected]
>
Acked-by: Wu Fengguang <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/base/memory.c
patch
|
blob
|
history
diff --git
a/drivers/base/memory.c
b/drivers/base/memory.c
index 4f4aa5897b4cee4722fed70a0820df5e49f9d000..933442f40321b1889b183cf4396486a4c35ad96f 100644
(file)
--- a/
drivers/base/memory.c
+++ b/
drivers/base/memory.c
@@
-313,7
+313,7
@@
static ssize_t
print_block_size(struct sysdev_class *class, struct sysdev_class_attribute *attr,
char *buf)
{
- return sprintf(buf, "%
#
lx\n", (unsigned long)PAGES_PER_SECTION * PAGE_SIZE);
+ return sprintf(buf, "%lx\n", (unsigned long)PAGES_PER_SECTION * PAGE_SIZE);
}
static SYSDEV_CLASS_ATTR(block_size_bytes, 0444, print_block_size, NULL);