Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 346342
b: refs/heads/master
c: 275b8b8
h: refs/heads/master
v: v3
  • Loading branch information
Geert Uytterhoeven authored and Linus Torvalds committed Dec 18, 2012
1 parent 1fdb297 commit f7af251
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b3dd20709db2cab0da0ade1f246fd6e6ab1396eb
refs/heads/master: 275b8b8917b92822442d6739807a3e033ddbeb5e
2 changes: 1 addition & 1 deletion trunk/arch/frv/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ void __init setup_arch(char **cmdline_p)
printk("KERNEL -> TEXT=0x%06x-0x%06x DATA=0x%06x-0x%06x BSS=0x%06x-0x%06x\n",
(int) &_stext, (int) &_etext,
(int) &_sdata, (int) &_edata,
(int) &_sbss, (int) &_ebss);
(int) &__bss_start, (int) &__bss_stop);
#endif

#ifdef CONFIG_VT
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/frv/mm/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void __init mem_init(void)

#else
codek = (_etext - _stext) >> 10;
datak = 0; //(_ebss - _sdata) >> 10;
datak = 0; //(__bss_stop - _sdata) >> 10;
#endif

tmp = nr_free_pages() << PAGE_SHIFT;
Expand Down

0 comments on commit f7af251

Please sign in to comment.