Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://android.git.kernel.org/kernel/tegra
Browse files Browse the repository at this point in the history
* 'for-linus' of git://android.git.kernel.org/kernel/tegra:
  arm: tegra: VMALLOC_END should be unsigned long
  arm: tegra: fix compilation of board-harmony.c
  • Loading branch information
torvalds committed Aug 28, 2010
2 parents 06f01e7 + 42537ef commit 8f2a002
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions arch/arm/mach-tegra/board-harmony.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,8 @@ static void __init tegra_harmony_fixup(struct machine_desc *desc,
{
mi->nr_banks = 2;
mi->bank[0].start = PHYS_OFFSET;
mi->bank[0].node = PHYS_TO_NID(PHYS_OFFSET);
mi->bank[0].size = 448 * SZ_1M;
mi->bank[1].start = SZ_512M;
mi->bank[1].node = PHYS_TO_NID(SZ_512M);
mi->bank[1].size = SZ_512M;
}

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/mach-tegra/include/mach/vmalloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@

#include <asm/sizes.h>

#define VMALLOC_END 0xFE000000
#define VMALLOC_END 0xFE000000UL

#endif

0 comments on commit 8f2a002

Please sign in to comment.