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:
f8b9e59
)
[PARISC] Kill zone_to_nid printk warning
author
Kyle McMartin
<kyle@mcmartin.ca>
Thu, 18 Oct 2007 07:03:53 +0000
(
00:03
-0700)
committer
Kyle McMartin
<kyle@shortfin.cabal.ca>
Thu, 18 Oct 2007 07:59:00 +0000
(
00:59
-0700)
zone_to_nid returns int, always.
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
arch/parisc/mm/init.c
patch
|
blob
|
history
diff --git
a/arch/parisc/mm/init.c
b/arch/parisc/mm/init.c
index e724b362c49a526de3adb906cd4d079772f471f2..aa875fa43488b8a835e2b6d079871832bc0c308f 100644
(file)
--- a/
arch/parisc/mm/init.c
+++ b/
arch/parisc/mm/init.c
@@
-607,7
+607,7
@@
void show_mem(void)
printk("Zone list for zone %d on node %d: ", j, i);
for (k = 0; zl->zones[k] != NULL; k++)
- printk("[%
l
d/%s] ", zone_to_nid(zl->zones[k]), zl->zones[k]->name);
+ printk("[%d/%s] ", zone_to_nid(zl->zones[k]), zl->zones[k]->name);
printk("\n");
}
}